Home | History | Annotate | Download | only in util

Lines Matching refs:NEOERR

37 NEOERR *ne_net_listen(int port, int *fd);
38 NEOERR *ne_net_accept(NSOCK **sock, int fd, int data_timeout);
39 NEOERR *ne_net_connect(NSOCK **sock, const char *host, int port,
41 NEOERR *ne_net_close(NSOCK **sock);
42 NEOERR *ne_net_read(NSOCK *sock, UINT8 *buf, int buflen);
43 NEOERR *ne_net_read_line(NSOCK *sock, char **buf);
44 NEOERR *ne_net_read_binary(NSOCK *sock, UINT8 **b, int *blen);
45 NEOERR *ne_net_read_str_alloc(NSOCK *sock, char **s, int *len);
46 NEOERR *ne_net_read_int(NSOCK *sock, int *i);
47 NEOERR *ne_net_write(NSOCK *sock, const char *b, int blen);
48 NEOERR *ne_net_write_line(NSOCK *sock, const char *s);
49 NEOERR *ne_net_write_binary(NSOCK *sock, const char *b, int blen);
50 NEOERR *ne_net_write_str(NSOCK *sock, const char *s);
51 NEOERR *ne_net_write_int(NSOCK *sock, int i);
52 NEOERR *ne_net_flush(NSOCK *sock);