16
使用Linux和Python,我想與廣播發送一些數據:的Python socket.error:[錯誤13]許可被拒絕
d = b'109u433279423423423'
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.sendto(d, 0, ('192.168.0.255', 9))
我啓動下根此腳本,並得到這個錯誤:
s.sendto(d, 0, ('192.168.0.255', 9)) socket.error: [Errno 13]
Permission denied
有什麼不對?
感謝。奇怪的是,這可以在Windows上正常工作 – atomAltera 2012-07-12 20:10:59
在Windows上總是這樣:奇怪的 – fork0 2012-07-12 20:11:40
UNIX規格:sendto - 在套接字上發送消息:http://pubs.opengroup.org/onlinepubs/009695399/functions/sendto.html – fork0 2012-07-12 20:12:34