Blame view

c/inet.h 326 Bytes
36845477b   김태훈   네트워크 인터페이스의 IP 주소...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  #ifndef INET_H
  #define INET_H
  
  // 인터페이스 이름
  #define IFNAME "eth0"
  
  // p_ip:    ip를 받는 버퍼
  // sz_ip:   버퍼 크기
  int get_ip_addr(char *p_ip, int sz_ip);
  
  // p_netmask:   넷마스크를 받는 버퍼
  // sz_netmask:  버퍼 크기
  int get_netmask(char *p_netmask, int sz_netmask);
  
  #endif /* INET_H */