Rudiments
socketserver.h
1 // Copyright (c) 2004 David Muse
2 // See the COPYING file for more information.
3 
4  protected:
5  bool securityContextAccept(filedescriptor *sock);
6 
7  ssize_t lowLevelRead(void *buf, ssize_t count);
8  ssize_t lowLevelWrite(const void *buf, ssize_t count);
9  int32_t lowLevelClose();
10 
11  private:
12  bool setLingerOnClose(int32_t timeout, int32_t onoff);
13  bool setReuseAddresses(int32_t onoff);
14 
15  socketserverprivate *pvt;
Definition: filedescriptor.h:13