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