]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unicast.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Demo / sockets / unicast.py
CommitLineData
4710c53d 1# Send UDP broadcast packets\r
2\r
3MYPORT = 50000\r
4\r
5import sys, time\r
6from socket import *\r
7\r
8s = socket(AF_INET, SOCK_DGRAM)\r
9s.bind(('', 0))\r
10\r
11while 1:\r
12 data = repr(time.time()) + '\n'\r
13 s.sendto(data, ('', MYPORT))\r
14 time.sleep(2)\r