October 2016
Beginner to intermediate
650 pages
14h 43m
English
In a client-server architecture, there is one centralized server that provides service, and many clients request and receive service from the centralized server. Here are some methods you need to know:
socket.bind(address): This method is used to connect the address (IP address, port number) to the socket. The socket must be open before connecting to the address.socket.listen(q): This method starts the TCP listener. The q argument defines the maximum number of lined-up connections.socket.accept(): The use of this method is to accept the connection from the client. Before using this method, the socket.bind(address) and socket.listen(q) methods must be used. The socket.accept() method returns two values: client_socket and Read now
Unlock full access