gotthardp / gen_coap

Generic Erlang CoAP Client/Server
Other
106 stars 47 forks source link

options incomplete? #2

Closed qingchuwudi closed 8 years ago

qingchuwudi commented 8 years ago

Options in coap_message_parser.erl are less than rfc7252 on page 53. Why?

gotthardp commented 8 years ago

Because I was lazy. Those options are not used anywhere in the implementation and there are provisions for handling unknown options, so I thought that maybe the parser doesn't need to implement them explicitly for the time being.

I fixed that. The parser now explicitly supports all options although they are still not used anywhere in the implementation. There are still features (proxying and uri query) that are not implemented.