gorilla / rpc

Package gorilla/rpc is a golang foundation for RPC over HTTP services.
https://gorilla.github.io
BSD 3-Clause "New" or "Revised" License
590 stars 179 forks source link

Correct deflate encoding selector name #66

Closed kofrasa closed 5 years ago

kofrasa commented 5 years ago

The compression name to select must match that returned from acceptEnc function.

kisielk commented 5 years ago

While you're here, can you just move acceptedEnc into the body of Select and return the encoders directly? I don't see any need to have this intermediate layer of strings

kofrasa commented 5 years ago

Done.

kisielk commented 5 years ago

Cool, thank you