/usr/include/diet/skalibs/webipc.h is in skalibs-dev 0.47-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /* Public domain. */
#ifndef WEBIPC_H
#define WEBIPC_H
#define IPCPATH_MAX 99
extern int ipc_stream (void) ;
extern int ipc_datagram (void) ;
extern int ipc_connect (int, char const *) ;
extern int ipc_bind (int, char const *) ;
extern int ipc_bind_reuse (int, char const *) ;
extern int ipc_listen (int, int) ;
extern int ipc_accept (int, char *, unsigned int, int *) ;
extern int ipc_eid (int, int *, int *) ;
extern int ipc_local (int, char *, unsigned int, int *) ;
#endif
|