Unix Socket – Network Addresses
This topic is about Unix Socket - Network Addresses. Before we proceed with the actual stuff, let us discuss a bit about the Network Addresses − the IP Address. The…
This topic is about Unix Socket - Network Addresses. Before we proceed with the actual stuff, let us discuss a bit about the Network Addresses − the IP Address. The…
This topic is about Unix Socket - What is a Socket?. Sockets allow communication between two different processes on the same or different machines. To be more precise, it's a…
This topic is about Unix Socket Tutorial. Sockets are communication points on the same or different computers to exchange data. Sockets are supported by Unix, Windows, Mac, and many other…
This topic is about Unix Socket - Summary. Here is a list of all the functions related to socket programming. Port and Service Functions Unix provides the following functions to…
This topic is about Unix Socket - Client Examples. To make a process a TCP client, you need to follow the steps given below &minus ; Create a socket with…
This topic is about Unix Socket - Server Examples. To make a process a TCP server, you need to follow the steps given below − Create a socket with the socket() system…
This topic is about Unix Socket - Helper Functions. This chapter describes all the helper functions, which are used while doing socket programming. Other helper functions are described in the…
This topic is about Unix Socket - Core Functions. This chapter describes the core socket functions required to write a complete TCP client and server. The following diagram shows the…
This topic is about Unix Socket - IP Address Functions. Unix provides various function calls to help you manipulate IP addresses. These functions convert Internet addresses between ASCII strings (what…
This toppic is about Unix Socket - Network Byte Orders. Unfortunately, not all computers store the bytes that comprise a multibyte value in the same order. Consider a 16-bit internet…