6718676: putback for 6604014 is incomplete

Reviewed-by: kvn, jrose
This commit is contained in:
Tom Rodriguez 2008-06-24 16:00:14 -07:00
parent a671e7c7b5
commit 873da1efe8
108 changed files with 4499 additions and 1809 deletions

View file

@ -66,6 +66,8 @@ public:
static inline int socket_shutdown(int fd, int howto);
static inline int recv(int fd, char *buf, int nBytes, int flags);
static inline int send(int fd, char *buf, int nBytes, int flags);
// Variant of send that doesn't support interruptible I/O
static inline int raw_send(int fd, char *buf, int nBytes, int flags);
static inline int timeout(int fd, long timeout);
static inline int listen(int fd, int count);
static inline int connect(int fd, struct sockaddr *him, int len);