22 lines
308 B
Python
Executable File
22 lines
308 B
Python
Executable File
#!/usr/bin/python2
|
|
|
|
import socket
|
|
import thread
|
|
|
|
#host = socket.gethostname()
|
|
host = "192.168.178.21"
|
|
port = 5005
|
|
|
|
def main():
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
s.bind((host,port))
|
|
|
|
while 1:
|
|
data, addr = s.recvfrom(1024)
|
|
print data
|
|
print addr
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|