• File: unicast.py
  • Full Path: /home/masbinta/public_html/admin/installer/css/sass/sym404/root/lib64/python2.7/Demo/sockets/unicast.py
  • File size: 230 bytes
  • MIME-type: text/x-python
  • Charset: utf-8
# 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)