From fb47d36048e94b9a506d5c153e3dd19a01e37df1 Mon Sep 17 00:00:00 2001
From: Administrator <admin@example.com>
Date: 星期一, 30 十月 2023 16:30:27 +0800
Subject: [PATCH] bug修复

---
 utils/socket_util.py |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/utils/socket_util.py b/utils/socket_util.py
index 941ba39..fc493e2 100644
--- a/utils/socket_util.py
+++ b/utils/socket_util.py
@@ -80,3 +80,17 @@
         return True
     else:
         return False
+
+
+# 绔彛鏄惁琚崰鐢�
+def is_port_bind(port):
+    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+    result = sock.connect_ex(('127.0.0.1', port))
+    if result == 0:
+        return True
+    else:
+        return False
+
+
+if __name__ == "__main__":
+    pass

--
Gitblit v1.8.0