docker / libchan

Like Go channels over the network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

libchan.Pipe and spdy.Pipe have different return value order

stevvooe opened this issue · comments

sdpy has (sender, receiver), whereas libchan has (receiver, sender). These should match and should probably follow (receiver, sender), similar to the io package (reader, writer).

Agreed receiver before sender, this was an artifact of a previous design which never got cleaned up. Will have to investigate who might be effected by it.