Set up a client and server while talk over TCP AF_UNIX sockets. The server performs the dictionary look up.
- Edit the lookup7.c file to communicate with a server by using TCP AF_UNIX sockets.
- Edit usock_server.c to listen on an AF_UNIX socket for any number of TCP AF_UNIX clients and reply down the same socket.
- After the file have been edited, type make, or make usock_server and usock_cilent.
- When you get the prompt, run the usock_server and usock_client as shown in the output below.
Sample output:
Set up a client and server while talk over TCP AF_INET sockets. The server performs the dictionary look up.
- Edit the lookup8.c file to communicate with a server by using TCP AF_INET sockets.
- Edit isock_server.c to listen on an TCP AF_INET socket for any number of internet clients and reply down the same socket.
- After the file have been edited, type make, or make isock_server and isock_cilent.
- When you get the prompt, run the isock_server and isock_client.
Sample output:
Set up a client and server while talk over UDP AF_INET sockets. server performs the dictionary look up.
- Edit the lookup9.c file to communicate with a server by using UDP AF_INET sockets.
- Edit udp_server.c to listen on an UDP AF_INET socket for any number of internet clients and reply down the same socket.
- After the file have been edited, type make, or make udp_server and udp_cilent.
- When you get the prompt, run the udp_server and udp_client as shown in the output below.
Sample output:
Reviews
There are no reviews yet.