inet.h

来自「关系型数据库 Postgresql 6.5.2」· C头文件 代码 · 共 59 行

H
59
字号
/*------------------------------------------------------------------------- * * builtins.h *	  Declarations for operations on built-in types. * * * Copyright (c) 1994, Regents of the University of California * * $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	{		unsigned int ipv4_addr; /* network byte order */		/* add IPV6 address type here */	}			addr;} 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;} macaddr;typedef struct manufacturer{	unsigned char a;	unsigned char b;	unsigned char c;	char	   *name;} manufacturer;extern manufacturer manufacturers[];#endif	 /* MAC_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?