-
Notifications
You must be signed in to change notification settings - Fork 6
/
dhcp.h
69 lines (59 loc) · 1.56 KB
/
dhcp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef DHCP_H__
#define DHCP_H__
#include <arpa/inet.h>
#include <net/if.h>
/**
* dhcp请求超时
* 单位秒s
*/
#define DHCP_TIMEOUT (120)
/*
* 信息存储结构
*/
typedef struct dhcp_t {
char ifname[IF_NAMESIZE];
union {
struct { /* ipv4 */
struct in_addr _serip;
struct in_addr _clip;
struct in_addr _mask;
} _v4;
struct { /* ipv6 */
struct in6_addr _serip;
struct in6_addr _clip;
struct in6_addr _mask;
} _v6;
} _data;
} dhcp_t;
/**
* 为s设置接口名字
* NOTE 使用s进行dhcp获取ip时,**必须**先指明接口
* @return: 0: 成功
* -1: 失败
*/
int dhcp_setif(dhcp_t *s, char const *ifname);
/**
* 从s里获取dhcp服务器ip信息
* s: dhcp_t结构体
* type: AF_INET: ipv4; AF_INET6: ipv6
* serip: 如果是AF_INET,这是一个struct in_addr指针
* 如果是AF_INET6, 这是一个struct in6_addr指针
* @return: 0: 成功
* -1: s没有需要获取的信息
*/
int dhcp_getsip(dhcp_t *s, int type, void *serip);
/* 获取到的ip, 和上述类似 */
int dhcp_getcip(dhcp_t *s, int type, void *clip);
/* 获取获取到ip的subnet mask, 和上述类似 */
int dhcp_getmask(dhcp_t *s, int type, void *mask);
/**
* 执行dhcp协议获取可用ip和mask信息
* tip需要给出接口信息
* 结果存储在tip里
* @return: 0: 成功
* 1: 没有这个接口
* 2: 网络并不通,没有服务器响应
* -1: 超时
*/
int dhcp_run(dhcp_t *tip);
#endif /* DHCP_H__ */