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>
|
|
|
|
|
2024-11-22 16:44:38 +08:00
|
|
|
// #define INTERFACE "mlan0"
|
2024-11-21 09:11:11 +08:00
|
|
|
#define SERVER_ADDR "47.120.14.45"
|
|
|
|
#define PORT 3001
|
|
|
|
|
2024-11-22 16:44:38 +08:00
|
|
|
void client(char server_addr[], int server_port);
|
2024-11-20 16:11:23 +08:00
|
|
|
|
|
|
|
#endif
|