Rudiments
clientsocket.h
1 // Copyright (c) 2004 David Muse
2 // See the COPYING file for more information.
3 
4  protected:
5 #ifdef RUDIMENTS_HAS_SSL
6  BIO *newSSLBIO() const;
7 #endif
8  int32_t connect(const struct ::sockaddr *addr,
9  socklen_t addrlen, long sec, long usec);
10  ssize_t lowLevelRead(void *buf, ssize_t count) const;
11  ssize_t lowLevelWrite(const void *buf, ssize_t count) const;
12  int32_t lowLevelClose();
13 
14  clientsocketprivate *pvt;