summaryrefslogtreecommitdiff
path: root/vpn/10.10.10.1
diff options
context:
space:
mode:
Diffstat (limited to 'vpn/10.10.10.1')
-rwxr-xr-xvpn/10.10.10.114
1 files changed, 0 insertions, 14 deletions
diff --git a/vpn/10.10.10.1 b/vpn/10.10.10.1
deleted file mode 100755
index 7ec52f7..0000000
--- a/vpn/10.10.10.1
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/python
-
-import socket
-
-UDP_IP = ""
-UDP_PORT = 5000
-
-sock = socket.socket(socket.AF_INET, # Internet
- socket.SOCK_DGRAM) # UDP
-sock.bind((UDP_IP, UDP_PORT))
-
-while True:
- data, addr = sock.recvfrom(1024) # buffer size is 1024 bytes
- print "received message:", data \ No newline at end of file