Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
|
Client-side implementation of TCP Half Duplex Communication More...
#include <netdb.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Macros | |
#define | PORT 8100 |
For structures returned by the network database library - formatted internet addresses and port numbers For macro definitions related to the creation of sockets For definitions to allow for the porting of BSD programs. | |
Functions | |
void | error () |
Utility function used to print an error message to stderr . | |
int | main () |
Main function. | |
Client-side implementation of TCP Half Duplex Communication
The algorithm is based on the simple TCP client and server model. However, instead of the server only sending and the client only receiving data, the server and client can both send data but only one at a time. This is implemented by using a particular ordering of the send()
and recv()
functions. When one of the clients or servers is sending, the other can only receive and vice-versa. In this way, the Half Duplex Form of communication can be represented using the TCP server-client model & socket programming
#define PORT 8100 |
For structures returned by the network database library - formatted internet addresses and port numbers For macro definitions related to the creation of sockets For definitions to allow for the porting of BSD programs.
For specific bit size values of variables Variable types, several macros, and various functions for performing input and output Variable types, several macros, and various functions for performing general functions Various functions for manipulating arrays of characters
void error | ( | ) |
Utility function used to print an error message to stderr
.
It prints str
and an implementation-defined error message corresponding to the global variable errno
.
int main | ( | void | ) |
Main function.
Variable Declarations
< socket descriptors - Like file handles but for sockets
< basic structures for all syscalls and functions that deal with internet addresses. Structures for handling internet addresses
< Character arrays to read and store string data for communication
The TCP socket is created using the socket function.
AF_INET (Family) - it is an address family that is used to designate the type of addresses that your socket can communicate with
SOCK_STREAM (Type) - Indicates TCP Connection - A stream socket provides for the bidirectional, reliable, sequenced, and unduplicated flow of data without record boundaries. Aside from the bidirectionality of data flow, a pair of connected stream sockets provides an interface nearly identical to pipes.
0 (Protocol) - Specifies a particular protocol to be used with the socket. Specifying a protocol of 0 causes socket() to use an unspecified default protocol appropriate for the requested socket type.
Server Address Information
The bzero() function erases the data in the n bytes of the memory starting at the location pointed to, by writing zeros (bytes containing '\0') to that area.
We bind the server_addr to the internet address and port number thus giving our socket an identity with an address and port where it can listen for connections
htons - The htons() function translates a short integer from host byte order to network byte order
htonl - The htonl() function translates a long integer from host byte order to network byte order
These functions are necessary so that the binding of address and port takes place with data in the correct format
Connects the client to the server address using the socket descriptor This enables the two to communicate and exchange data
Communication between client and server
The bzero() function erases the data in the n bytes of the memory starting at the location pointed to, by writing zeros (bytes containing '\0') to that area. The variables are emptied and then ready for use
First the CLIENT receives the servers message and displays it (recv())
The CLIENT is then prompted to type in a message and send it to the server. (send())
The server and client can communicate till one of them exits the connection
Since the exchange of information between the server and client take place one at a time this represents HALF DUPLEX COMMUNICATION
Receive Message
Send Message
Close Socket