2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-10-05 13:45:56 +00:00
Files
isc-dhcp/includes/inet.h
1999-10-07 06:36:35 +00:00

34 lines
983 B
C

/* inet.h
Portable definitions for internet addresses */
/*
* Copyright (c) 1996-1999 Internet Software Consortium.
* Use is subject to license terms which appear in the file named
* ISC-LICENSE that should have accompanied this file when you
* received it. If a file named ISC-LICENSE did not accompany this
* file, or you are not sure the one you have is correct, you may
* obtain an applicable copy of the license at:
*
* http://www.isc.org/isc-license-1.0.html.
*
* This file is part of the ISC DHCP distribution. The documentation
* associated with this file is listed in the file DOCUMENTATION,
* included in the top-level directory of this release.
*
* Support and other services are available for ISC products - see
* http://www.isc.org for more information.
*/
/* An internet address of up to 128 bits. */
struct iaddr {
unsigned len;
unsigned char iabuf [16];
};
struct iaddrlist {
struct iaddrlist *next;
struct iaddr addr;
};