this is my python code :
if __name__ == '__main__': import socket sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) sock.connect(('0.0.0.0', 4000)) import time time.sleep(2) #sock.send('1')print sock.recv(1024) sock.close()
it show :
Traceback (most recent call last):File "D:\Program Files\test\test\python\client.py", line 3, in <module>sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
AttributeError: 'module' object has no attribute 'AF_UNIX'
what can i do ,
thanks
updated:
Traceback (most recent call last):File "D:\Program Files\test\test\python\client.py", line 4, in <module>sock.connect(('0.0.0.0', 4000))File "<string>", line 1, in connect
socket.error: (10049, "Can't assign requested address")