EMS/drv/drv_4g.h

26 lines
506 B
C

#ifndef __DRV_4G_H_
#define __DRV_4G_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 <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <errno.h>
#include <pthread.h>
#include <sys/ioctl.h>
// #define INTERFACE "mlan0"
#define SERVER_ADDR "47.120.14.45"
#define PORT 3001
void client(char server_addr[], int server_port);
#endif