User Tools

Site Tools


tcp_udp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tcp_udp [2017/05/02 21:57] dwallacetcp_udp [2017/05/02 22:45] (current) dwallace
Line 93: Line 93:
 ==== Server ==== ==== Server ====
  
-Let's break down the server code. The first block is where we include all the necessary libraries and define essential constants.+Let's break down the server code. The server is a program that binds to a certain port, and send a predefined message to any client that connects to it. The first block is where we include all the necessary libraries and define essential constants.
  
 <code c> <code c>
Line 254: Line 254:
  
 Note, don't forget that all of the code after the first two blocks belongs in main( ), and that we must return 0 at the end of main( ). Note, don't forget that all of the code after the first two blocks belongs in main( ), and that we must return 0 at the end of main( ).
 +
 +Here is what it looks like when we launch the server:
 +
 +{{ dylanw:tcp_server_launch.jpg?500 }}
 +\\ 
 +And here is what it looks like when something connects to the server:
 +
 +{{ dylanw:tcp_server_connect.jpg?500 }}
  
 ==== Client ==== ==== Client ====
  
-Now, let's go over the client. This program is much simpler, as it only need to handle one connection during its run. We start out with the includes and the constant declarations, just as with the server.+Now, let's go over the client. The client is a program that connects to server port at a given IP address, and receives the message that the server sends. This program is much simpler, as it only need to handle one connection during its run. We start out with the includes and the constant declarations, just as with the server.
  
 <code c> <code c>
Line 373: Line 381:
  
 Just as with the server, we must ensure that everything after the first two blocks is in the main( ) function, and that we return 0 at the end. Just as with the server, we must ensure that everything after the first two blocks is in the main( ) function, and that we return 0 at the end.
 +
 +Here is what it looks like when the client is launched, and receives a message:
 +
 +{{ dylanw:tcp_client_launch.jpg?700 }}
 +
 ===== UDP Talker & Listener ===== ===== UDP Talker & Listener =====
  
Line 383: Line 396:
 ==== Listener ==== ==== Listener ====
  
-This listener has very similar style to the TCP server we created. As usual it starts with the includes and constant declarations.+This listener has very similar style to the TCP server we created. The listener is a program that binds to a predefined port, and listens to any messages received on that port, like a "reverse server". As usual it starts with the includes and constant declarations.
  
 <code c> <code c>
Line 495: Line 508:
  
 As with the others, make sure to include all of this in main( ), and return 0 at the end. As with the others, make sure to include all of this in main( ), and return 0 at the end.
 +
 +Here is what it looks like when the listener is launched:
 +
 +{{ dylanw:udp_listener_launch.jpg?500 }}
 +\\ 
 +And here is what it looks like when the listener receives a message:
 +
 +{{ dylanw:udp_listener_receive.jpg?500 }}
  
 ==== Talker ==== ==== Talker ====
  
 +The talker is probably the simplest program of all of these, with just 65 lines of code. The talker is a program that send  given message to a predefined port on the given IP address. It doesn't assume anything is listening, although it is useless without anything listening. As usual, we start with includes and constant declarations.
 +
 +<code c>
 +#include <stdio.h>      // Standard Input/Output library
 +#include <stdlib.h>     // Standard library
 +#include <unistd.h>     // Unix API
 +#include <errno.h>      // Error library
 +#include <string.h>     // String library
 +#include <sys/types.h>  // System types library
 +#include <sys/socket.h> // Sockets library
 +#include <netinet/in.h> // Main internet library
 +#include <arpa/inet.h>  // The Internet library
 +#include <netdb.h>      // Internet database
 +
 +#define SERVERPORT "4812" // The port users will be connecting to
 +</code>
 +
 +Unlike all of the other programs, no need to define a get_in_addr function, because we are simply sending a UDP packet to the given IP address at the defined port.
 +
 +So we move onto the main( ) function, with command line arguments. We start off with the usual: declaring structures, checking argument count, filling out the IP address structure, and calling getaddrinfo for the given IP address.
 +
 +<code c>
 +    int sockfd; // Socket descriptor
 +    struct addrinfo hints, *servinfo, *p; // Structs to store IP address info
 +    int rv; // Error checking
 +    int numbytes; // Number of bytes to send
 +
 +    if (argc != 3) { // Check command line arguments
 +        fprintf(stderr,"usage: talker hostname message\n"); // Print usage if needed
 +        exit(1);
 +    }
 +
 +    memset(&hints, 0, sizeof hints); // Fill out empty structure
 +    hints.ai_family = AF_UNSPEC; // We don't care if IPv4 or IPv6 (set to AF_INET to force IPv4)
 +    hints.ai_socktype = SOCK_DGRAM; // UDP type
 +
 +    if ((rv = getaddrinfo(argv[1], SERVERPORT, &hints, &servinfo)) != 0) { // If getaddrinfo fails
 +        fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(rv)); // Give getaddrinfo error
 +        return 1;
 +    }
 +</code>
 +
 +Next, we loop through the servinfo linked-list trying to create a socket, and then check if we actually created one.
 +
 +<code c>
 +    // Loop through all the results and make a socket
 +    for(p = servinfo; p != NULL; p = p->ai_next) {
 +        if ((sockfd = socket(p->ai_family, p->ai_socktype,
 +                p->ai_protocol)) == -1) { // If socket create fails
 +            perror("talker: socket"); // Give socket error
 +            continue;
 +        }
 +
 +        break;
 +    }
 +
 +    if (p == NULL) { // Check if anything actually ever was created
 +        fprintf(stderr, "talker: failed to create socket\n"); // Give failure to create message
 +        return 2;
 +    }
 +</code>
 +
 +Finally, we attempt to send the message packet to the IP address given and the port defined, free the IP address structure, print the message detailing the number of bytes sent, and finally close the socket.
 +
 +<code c>
 +    if ((numbytes = sendto(sockfd, argv[2], strlen(argv[2]), 0,
 +             p->ai_addr, p->ai_addrlen)) == -1) { // If sending error
 +        perror("talker: sendto"); // Give sending error
 +        exit(1);
 +    }
 +
 +    freeaddrinfo(servinfo); // Free the IP address structure
 +
 +    printf("talker: sent %d bytes to %s\n", numbytes, argv[1]); // Print number of bytes sent to the IP address
 +    close(sockfd); // Close the socket
 +</code>
 +
 +As usual, make sure that the code besides the first block is within main( ), with Cl arguments, and you return 0 at the end.
 +
 +Here is what it looks like when the talker is launched, and sends a message:
 +
 +{{ dylanw:udp_talker_launch.jpg?700 }}
 +
 +
 +This is basically it. Once you understand the basic network calls, and the looping structure, then it should be very easy to implement this yourself. Try out the program given yourself, and then try writing your own, and see if you can make it more efficient, or unique in your own way. Again, this is just the basics, and more difficult concepts will be covered in the future.
  
 ===== Final Words ===== ===== Final Words =====
tcp_udp.1493787427.txt.gz · Last modified: 2017/05/02 21:57 by dwallace