zeromq / erlzmq

Erlang bindings for ZeroMQ messaging
Erlang ZeroMQ Bindings
Other
49 stars 15 forks source link

getsockopt only supports recvmore #18

Closed gar1t closed 13 years ago

gar1t commented 13 years ago

All of the other options return {error, "Not implemented"}. It'd be nice to finish off that part of the API, but short of that, the incomplete implementation should be noted in the docs (Known Limitations?) IMO.

csrl commented 13 years ago

See http://github.com/csrl/erlzmq

saleyn commented 13 years ago

I committed a version that supports all socket options. The original driver code was implemented prior to getsockopt() API call being available in 0MQ, hence the missing logic.

gar1t commented 13 years ago

Looks great. Thanks!