File: ipaddr.h

package info (click to toggle)
vic 2.8ucl4-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 5,864 kB
  • ctags: 9,033
  • sloc: ansic: 56,989; cpp: 44,560; tcl: 5,550; sh: 1,382; perl: 1,329; makefile: 357
file content (31 lines) | stat: -rw-r--r-- 689 bytes parent folder | download
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
/*
 * ipaddr.h
 *
 * $Log: ipaddr.h,v $
 * Revision 1.1.1.1  1998/02/18 18:04:00  ucacsva
 * original vic-2.8 sources for Rm209
 *
 * Revision 1.4  1992/05/21  03:34:03  bmah
 * Adjusted function prototypes, added InterfaceIsLocal.
 *
 * Revision 1.3  1992/04/25  20:50:24  bmah
 * *** empty log message ***
 *
 * Revision 1.2  1992/04/25  20:49:46  bmah
 * Added support for new AddressIsLocal.
 *
 * Revision 1.1  1992/04/04  01:05:27  bmah
 * Initial revision
 *
 * Revision 1.1  1992/01/18  22:44:18  bmah
 * Initial revision
 *
 */
#ifndef IPADDR_H
#define IPADDR_H

unsigned long GetLocalIpAddress();
int AddressIsLocal(unsigned long ipAddr);
int InterfaceIsLocal(int line);

#endif