Finish implementation of RPC.
This commit is contained in:
+2
-2
@@ -15,8 +15,8 @@ type Unchunker struct {
|
||||
remainingChunkBytes uint32
|
||||
}
|
||||
|
||||
func NewUnchunker(conn io.Reader) Unchunker {
|
||||
return Unchunker{
|
||||
func NewUnchunker(conn io.Reader) *Unchunker {
|
||||
return &Unchunker{
|
||||
in: conn,
|
||||
remainingChunkBytes: 0,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user