Rudiments
socketclient.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
5 socketclient &operator=(socketclient &c) { return *this; };
6
7 protected:
8 int32_t connect(const struct sockaddr *addr,
9 socklen_t addrlen, int32_t sec, int32_t usec);
10 ssize_t lowLevelRead(void *buf, size_t count);
11 ssize_t lowLevelWrite(const void *buf, size_t count);
12 int32_t lowLevelClose();
13
14 friend class url;
15 private:
Definition avltree.h:11
Definition socketclient.h:11
Definition url.h:35