summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unicast.py
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unicast.py')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unicast.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unicast.py b/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unicast.py
new file mode 100644
index 0000000000..9d36f45f97
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unicast.py
@@ -0,0 +1,14 @@
+# Send UDP broadcast packets
+
+MYPORT = 50000
+
+import sys, time
+from socket import *
+
+s = socket(AF_INET, SOCK_DGRAM)
+s.bind(('', 0))
+
+while 1:
+ data = repr(time.time()) + '\n'
+ s.sendto(data, ('', MYPORT))
+ time.sleep(2)