所以我正在开发一个需要套接字来处理多个客户端进行在线游戏的 iPhone 应用程序。我已经尝试过 Twisted,并且付出了很多努力,我未能立即发送一堆信息,这就是为什么我现在要尝试使用 socket。
我的问题是,使用下面的代码,您将如何连接多个客户端?我已经尝试过列表,但我无法弄清楚它的格式。在一次连接多个客户端并且我能够向特定客户端发送消息的情况下,如何实现这一点?
谢谢!
#!/usr/bin/python # This is server.py file
import socket # Import socket module
s = socket.socket() # Create a socket object
host = socket.gethostname() # Get local machine name
port = 50000 # Reserve a port for your service.
print 'Server started!'
print 'Waiting for clients...'
s.bind((host, port)) # Bind to the port
s.listen(5) # Now wait for client connection.
c, addr = s.accept() # Establish connection with client.
print 'Got connection from', addr
while True:
msg = c.recv(1024)
print addr, ' >> ', msg
msg = raw_input('SERVER >> ')
c.send(msg);
#c.close() # Close the connection