Logo 
Search:

Networking Articles

Submit Article
Home » Articles » Networking » TCP/IPRSS Feeds

TCP/IP program of super-server

Posted By: Milind Mishra     Category: Networking     Views: 2002

TCP/IP program of super-server.

Code for TCP/IP program of super-server in Networking

#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/errno.h>
#include <sys/signal.h>
#include <sys/wait.h>
#include <netinet/in.h>

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

externint    errno;

#define    UDP_SERV    0
#define    TCP_SERV    1

#define    NOSOCK        -1    /* an invalid socket descriptor    */struct service {
    char    *sv_name;
    char    sv_useTCP;
    int    sv_sock;
    int    (*sv_func)(int);
};

int    TCPechod(int), TCPchargend(int), TCPdaytimed(int), TCPtimed(int);

int    passiveTCP(constchar *service, int qlen);
int    passiveUDP(constchar *service);
int    errexit(constchar *format, ...);
void    doTCP(struct service *psv);
void    reaper(int sig);

struct service svent[] =
    {    { "echo", TCP_SERV, NOSOCK, TCPechod },
        { "chargen", TCP_SERV, NOSOCK, TCPchargend },
        { "daytime", TCP_SERV, NOSOCK, TCPdaytimed },
        { "time", TCP_SERV, NOSOCK, TCPtimed },
        { 0, 0, 0, 0 },
    };

#ifndef    MAX
#define    MAX(x, y)    ((x) > (y) ? (x) : (y))
#endif/* MAX */#define    QLEN          5

#define    LINELEN        128

extern    u_short    portbase;    /* from passivesock()    */int
main(int argc, char *argv[])
{
    struct service    *psv,        /* service table pointer    */
        *fd2sv[NOFILE];        /* map fd to service pointer    */int    fd, nfds;
    fd_set    afds, rfds;        /* readable file descriptors    */switch (argc) {
    case 1:
        break;
    case 2:
        portbase = (u_short) atoi(argv[1]);
        break;
    default:
        errexit("usage: superd [portbase]\n");
    }

    nfds = 0;
    FD_ZERO(&afds);
    for (psv = &svent[0]; psv->sv_name; ++psv) {
        if (psv->sv_useTCP)
            psv->sv_sock = passiveTCP(psv->sv_name, QLEN);
        else
            psv->sv_sock = passiveUDP(psv->sv_name);
        fd2sv[psv->sv_sock] = psv;
        nfds = MAX(psv->sv_sock+1, nfds);
        FD_SET(psv->sv_sock, &afds);
    }
    (void) signal(SIGCHLD, reaper);

    while (1) {
        memcpy(&rfds, &afds, sizeof(rfds));
        if (select(nfds, &rfds, (fd_set *)0, (fd_set *)0,
                (struct timeval *)0) < 0) {
            if (errno == EINTR)
                continue;
            errexit("select error: %s\n", strerror(errno));
        }
        for (fd=0; fd<nfds; ++fd)
            if (FD_ISSET(fd, &rfds)) {
                psv = fd2sv[fd];
                if (psv->sv_useTCP)
                    doTCP(psv);
                else
                    psv->sv_func(psv->sv_sock);
            }
    }
}

/*------------------------------------------------------------------------ * doTCP - handle a TCP service connection request *------------------------------------------------------------------------ */void
doTCP(struct service *psv)
{
    struct sockaddr_in fsin;    /* the request from address    */int    alen;            /* from-address length        */int    fd, ssock;

    alen = sizeof(fsin);
    ssock = accept(psv->sv_sock, (struct sockaddr *)&fsin, &alen);
    if (ssock < 0)
        errexit("accept: %s\n", strerror(errno));
    switch (fork()) {
    case 0:    
        break;
    case -1:
        errexit("fork: %s\n", strerror(errno));
    default:
        (void) close(ssock);
        return;        /* parent */
    }
    /* child */for (fd = NOFILE; fd >= 0; --fd)
        if (fd != ssock)
            (void) close(fd);
    exit(psv->sv_func(ssock));
}

/*------------------------------------------------------------------------ * reaper - clean up zombie children *------------------------------------------------------------------------ */void
reaper(int sig)
{
    int    status;

    while (wait3(&status, WNOHANG, (struct rusage *)0) >= 0)
        /* empty */;
}
  
Share: 


Didn't find what you were looking for? Find more on TCP/IP program of super-server Or get search suggestion and latest updates.

Milind Mishra
Milind Mishra author of TCP/IP program of super-server is from India.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!