19 lines
473 B
C
19 lines
473 B
C
#ifndef __DRV_TCP_H_
|
|
#define __DRV_TCP_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/socket.h>
|
|
#include <arpa/inet.h>
|
|
#include <unistd.h>
|
|
#include <net/if.h>
|
|
#include <sys/ioctl.h>
|
|
#include <pthread.h>
|
|
|
|
void getInterfacesAndIPs(char *interfaces[], char *ips[], int *numInterfaces);
|
|
void closeAndFree(int server_fd, int new_socket, char *interface, char *ip);
|
|
void *tcpServeThread(void *arg);
|
|
void tcpServe(int port);
|
|
|
|
#endif |