PostgreSQL Source Code: src/include/port/win32/sys/un.h Source File (original) (raw)

1/*

2 * src/include/port/win32/sys/un.h

3 */

4#ifndef WIN32_SYS_UN_H

5#define WIN32_SYS_UN_H

6

7/*

8 * Windows defines this structure in <afunix.h>, but not all tool chains have

9 * the header yet, so we define it here for now.

10 */

11struct sockaddr_un

12{

13 unsigned short sun_family;

14 char sun_path[108];

15};

16

17#endif

sockaddr_un

Definition: un.h:12

sockaddr_un::sun_family

unsigned short sun_family

Definition: un.h:13

sockaddr_un::sun_path

char sun_path[108]

Definition: un.h:14