100 (int fd, char *buf, int nBytes, int flags), |
100 (int fd, char *buf, int nBytes, int flags), |
101 ("fd = %d, buf = %p, nBytes = %d, flags = %d", |
101 ("fd = %d, buf = %p, nBytes = %d, flags = %d", |
102 fd, buf, nBytes, flags), |
102 fd, buf, nBytes, flags), |
103 (fd, buf, nBytes, flags)); |
103 (fd, buf, nBytes, flags)); |
104 |
104 |
|
105 inline int hpi::raw_send(int fd, char *buf, int nBytes, int flags) { |
|
106 return send(fd, buf, nBytes, flags); |
|
107 } |
|
108 |
105 HPIDECL(timeout, "timeout", _socket, Timeout, int, "%d", |
109 HPIDECL(timeout, "timeout", _socket, Timeout, int, "%d", |
106 (int fd, long timeout), |
110 (int fd, long timeout), |
107 ("fd = %d, timeout = %ld", fd, timeout), |
111 ("fd = %d, timeout = %ld", fd, timeout), |
108 (fd, timeout)); |
112 (fd, timeout)); |
109 |
113 |