EMS/drv/drv_4g.h

22 lines
437 B
C
Raw Normal View History

2024-11-20 16:11:23 +08:00
#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>
void client(char interface[], char server_addr[], int server_port);
#endif