Changeset 27:3c2f8c4beb2c in vscpl for src/hu/varadiistvan/scpl
- Timestamp:
- 12/15/22 15:53:37 (23 months ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/hu/varadiistvan/scpl/io
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hu/varadiistvan/scpl/io/LocalAcceptor.h
r8 r27 43 43 * connection. 44 44 */ 45 class LocalAcceptor : public FailableReference<LocalAcceptor> 45 class LocalAcceptor : public FailableReference<LocalAcceptor>, 46 public BufferedStreamAcceptor 46 47 { 47 48 public: … … 78 79 LocalSocket* getSocket(size_t readingCapacity = LocalSocket::DEFAULT_CAPACITY, 79 80 size_t writingCapacity = LocalSocket::DEFAULT_CAPACITY); 81 82 /** 83 * Get the last accepted socket with the given waiter, if any. 84 */ 85 BufferedStream* getAcceptedBufferedStream(Waiter* waiter = nullptr) override; 80 86 }; 81 87 -
src/hu/varadiistvan/scpl/io/Makefile.am
r25 r27 35 35 WritingBuffer.h \ 36 36 BufferedStream.h \ 37 BufferedStreamAcceptor.h \ 37 38 LocalConnector.h \ 38 39 LocalClientSocket.h \
Note:
See TracChangeset
for help on using the changeset viewer.