您的位置:首页 > 编程语言 > Python开发

python之socket模块

2014-04-29 17:04 483 查看
UDP

client

#!/usr/bin/env python2.7
#-*-coding:utf-8 -*-

import socket
s=socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
s.sendto("hello",("localhost",8001))

data,addr = s.recvfrom(1024)
print "receive data:%s from %s" % (data,str(addr))


server

#!/usr/bin/env python2.7
#-*-coding:utf-8 -*-

import socket

port=8001
s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
s.bind(("",port))

while True:
data,client = s.recvfrom(1024)
print "receive a connection from %s" % str(client)

s.sendto("echo:"+data,client)


TCP

client

#!/usr/bin/env python2.7
#-*-coding:utf-8 -*-

import socket
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM,0)

host="localhost"
port=5531

s.connect((host,port))
msg=raw_input("Msg:")

s.send(msg)

data=s.recv(1024)

print "Reply from server----%s" % data


server

#!/usr/bin/env python2.7
#-*-coding:utf-8-*-

import socket
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM,0)

host = "localhost"
port = 1235

s.bind((host,port))
s.listen(3)

while True:
client,ipaddr = s.accept()
print "Got a connect from %s" % str(ipaddr)
data = client.recv(1024)
print "receive data:%s" % data

client.send("echo:"+data)
client.close()


测试连接MySQL端口,完成tcp三次握手



http://www.open-open.com/lib/view/open1342570701932.html

/article/4906538.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: