No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
In high school, I took a VB 6 programming class and I really enjoyed it. But now I want to know where to go from here. The farthest we got was arrays and control arrays.
I am working on making my own chat server and client, but have reached a little hiccup. The first line of text that the client send is not displayed by the server. Everything else is, just not the first line. Client [code=python] import socket uname = raw_input('username:> ') uname = …
I am confused by your choice of using s = socket.socket(AF_INET, SOCK_STREAM) then immediatly doing s = socket.socket(AF_INET, SOCK_DGRAM) by doing that, you have created a TCP/IP socket, then turned around and turned it into a udp socket. I really dont see why. Is this meant to be a server …
The End.
theOneCalledJef