| 32 | class Session { |
| 33 | public: |
| 34 | Session(Client* owner) : |
| 35 | _owner(owner), |
| 36 | _bytes_read(0), |
| 37 | _messages_read(0) { |
| 38 | |
| 39 | } |
| 40 | |
| 41 | int64_t BytesRead() const { |
| 42 | return _bytes_read; |
nothing calls this directly
no outgoing calls
no test coverage detected