buffstreams icon indicating copy to clipboard operation
buffstreams copied to clipboard

A library to simplify writing applications using TCP sockets to stream protobuff messages

Results 7 buffstreams issues
Sort by recently updated
recently updated
newest added

Got a question - not so much an issue - am working with protobuffers that i want to stream over tcp - and i came across your project here which...

https://github.com/StabbyCutyou/buffstreams/blob/20679e9ca31ad9ff33e5a1c3c4b90ec65e9a0b03/tcplistener.go#L79

https://github.com/StabbyCutyou/buffstreams/blob/20679e9ca31ad9ff33e5a1c3c4b90ec65e9a0b03/tcplistener.go#L85

```go func (t *TCPListener) readLoop(conn *TCPConn) { go func(c *TCPConn, s

Headers are encoded with Varint encoding, as per the spec for varint: https://developers.google.com/protocol-buffers/docs/encoding Varint encoding uses the 8th bit of each byte as a more flag. As such, only 7...