python_socket

时间:2014-10-05 03:11:17   收藏:0   阅读:230
# socket_server.py

import socket
s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
s.bind((‘‘,8089))
while True:
# Receive up to 1,024 bytes in a datagram
data, addr = s.recvfrom(1024)
print "Received:", data, "from", addr

 

# socket_client.py

import socket
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
port = 8089
host = "localhost"
while True:
msg = raw_input(Enter message:)
s.sendto(msg, (host, port))

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!