#ifndef DISPATCHER_H #define DISPATCHER_H #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> int initDispatcher(); int requestDispatcher(int sockfd, struct sockaddr_in *addr, socklen_t *addrlen ); void freeDispatcher(); #endif