Rudiments
websocket.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
5 websocket &operator=(websocket &w) { return *this; };
6
7 private:
8 bool acceptInternal();
9 ssize_t readInternal(void *buf, size_t size);
10 ssize_t write(const void *buf, size_t size, byte_t opcode);
11 ssize_t writeInternal(const void *buf, size_t size,
12 byte_t opcode);
13 size_t copyOut(void *buf, size_t size);
14 bool pong();
15 bool validatePong();
16
Definition avltree.h:11
Definition websocket.h:10