File: uxsock.h

package info (click to toggle)
multipath-tools 0.5.0-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,800 kB
  • sloc: ansic: 26,772; sh: 844; makefile: 374
file content (7 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
/* some prototypes */
int ux_socket_connect(const char *name);
int ux_socket_listen(const char *name);
int send_packet(int fd, const char *buf, size_t len);
int recv_packet(int fd, char **buf, size_t *len);
size_t write_all(int fd, const void *buf, size_t len);
size_t read_all(int fd, void *buf, size_t len);