aboutsummaryrefslogtreecommitdiffstats
path: root/lib/util/netutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util/netutil.py')
-rw-r--r--lib/util/netutil.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/util/netutil.py b/lib/util/netutil.py
new file mode 100644
index 0000000..f8cc2d4
--- /dev/null
+++ b/lib/util/netutil.py
@@ -0,0 +1,18 @@
+#!/usr/bin/env python
+
+#
+# Licence statement goes here
+#
+
+import socket
+def get_ip():
+ s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+ try:
+ # doesn't even have to be reachable
+ s.connect(('192.255.255.255', 1))
+ IP = s.getsockname()[0]
+ except:
+ IP = '127.0.0.1'
+ finally:
+ s.close()
+ return IP