You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
450 B
22 lines
450 B
6 years ago
|
#ifndef HELPERS_H_
|
||
|
#define HELPERS_H_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <netinet/in.h>
|
||
|
#include <netdb.h>
|
||
|
#include <arpa/inet.h>
|
||
|
#include <sys/select.h>
|
||
|
|
||
|
int create_socket(uint16_t port);
|
||
|
|
||
|
int read_from_client(int file_des, uint16_t max_line);
|
||
|
|
||
|
void init_sockaddr(struct sockaddr_in *name, const char *hostname, uint16_t port);
|
||
|
|
||
|
#endif //HELPERS_H_
|