C Network Programming

This article is the reading noetes for project httpd, which is writen in 1999.GitHub addr
C Network Programming_第1张图片

AF_INET(address family) == PF_INET (protocol family);

void * memset ( void * ptr, int value, size_t num );

Set the first num bytes of the block of memory pointed by ptr to the specified value value;

htonl, htons, ntohl, ntohs - convert values between host and network byte order. And the function of each fun() is showed in their name. For instance, htonl(uint32_t hostlong) means: convert long from host bytes order to network bytes order.

getsockopt, setsockopt - get and set options on sockets

#include       
#include 
int getsockopt(int sockfd, int level, int optname, void *optval, socklen_t *optlen);
int setsockopt(int sockfd, int level, int optname, const void *optval, socklen_t optlen);

On success, zero is returned. On error, -1 is returned, and errno is set appropriately.

SO_REUSEADDR: when this argument is used, means that if the port is busy but TCP is in time_wait stage, then this port can be reused, if TCP in other stage, will get a error message showing this addr is in use. So it is quite useful when your sever reboot and wanna use the same port.

socket()

create an endpoint for communication and returns a file descriptor that refers to that endpoint.

#include  /* See NOTES */
#include 
int socket(int domain, int type, int protocol);

bind()

#include           /* See NOTES */
#include 

int bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen);

When a socket is created with socket(2), it exists in a name space (address family) but has no address assigned to it. bind() assigns the address specified by addr to the socket referred to by the file descriptor sockfd. addrlen specifies the size, in bytes, of the address structure pointed to by addr. Traditionally, this operation is called “assigning a name to a socket”.

int getsockname(int sockfd, struct sockaddr *addr, socklen_t *addrlen);

returns the current address to which the socket sockfd is bound, in the buffer pointed by addr.

listen()

int listen(int sockfd, int backlog);

listen() marks the socket referred to by sockfd as a passive socket, that is, as a socket that will be used to accept incoming connection requests using accept(). The backlog argument defines the maximum length to which the queue of pending connections for sockfd may grow.

connect()

Initiate a connection on a socket

#include 
#include 

int connect(int sockfd, const struct sockaddr addr,
  socklen_t addrlen);

The connect() system call connects the socket referred to by the file

   descriptor _sockfd_ to the address specified by _addr_.  The _addrlen_
   argument specifies the size of _addr_.
   

# accept()
accepte a connection on a socket

#include  
#include 

int accept(int sockfd, struct sockaddr addr, socklen_t addrlen);

The accept() system call is used with connection-based socket types

   (**SOCK_STREAM**, **SOCK_SEQPACKET**).  It extracts the first connection
   request on the queue of pending connections for the listening socket,
   _sockfd_, creates a new connected socket, and returns a new file
   descriptor referring to that socket.  The newly created socket is not
   in the listening state.  The original socket _sockfd_ is unaffected by
   this call.
   

httpd::startup()

This function init the http service, including set up socket, bind port and listen for connections;

httpd::accept_request()

Handle a connection from the coneections queue.

你可能感兴趣的:(c,网络编程,http)