一個簡單的聊天客戶端的基礎上工作,並得到了以下錯誤: socket.error: [Errno 10049] The requested address is not valid in its context
的Python,socket.error:[錯誤10049]
的代碼是:
from socket import *
HOST = ''
PORT = 8000
s = socket(AF_INET, SOCK_STREAM)
s.connect((HOST, PORT))
i = True
while i is True:
msg = raw_input("Write A MSG: ")
s.send(msg)
print "Awaiting reply"
reply = s.recv(1024)
print "Recived: ", repr(reply)
s.close()
感謝您的幫助。
哪一行是錯誤?此外,可能重複http://stackoverflow.com/questions/7162869/python-sockets-socketserver-connection – CDspace
你可以看看這裏的[Windows錯誤代碼](http://msdn.microsoft.com/en-us/library /windows/desktop/ms740668(v=vs.85).aspx)這似乎是你正在使用的平臺。我懷疑你的問題是你的HOST變量是空的。 –
請提供完整的追溯 – JadedTuna