postgresql/src/include/utils/inet.h

59 lines
1.0 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* builtins.h
* Declarations for operations on built-in types.
*
*
* Copyright (c) 1994, Regents of the University of California
*
1999-05-26 00:43:53 +02:00
* $Id: inet.h,v 1.5 1999/05/25 22:43:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef MAC_H
#define MAC_H
/*
* This is the internal storage format for IP addresses:
*/
typedef struct
{
unsigned char family;
unsigned char bits;
unsigned char type;
union
{
1999-05-25 18:15:34 +02:00
unsigned int ipv4_addr; /* network byte order */
/* add IPV6 address type here */
} addr;
1999-05-26 00:43:53 +02:00
} inet_struct;
typedef struct varlena inet;
/*
* This is the internal storage format for MAC addresses:
*/
typedef struct macaddr
{
unsigned char a;
unsigned char b;
unsigned char c;
unsigned char d;
unsigned char e;
unsigned char f;
1999-05-25 18:15:34 +02:00
} macaddr;
typedef struct manufacturer
{
unsigned char a;
unsigned char b;
unsigned char c;
char *name;
1999-05-26 00:43:53 +02:00
} manufacturer;
extern manufacturer manufacturers[];
#endif /* MAC_H */