Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 1.53 KB

README.md

File metadata and controls

30 lines (25 loc) · 1.53 KB

NETCONF and RESTCONF protocol implementations

Components in this directory are tasked with providing the Messages and Operations layers for both RFC6241 NETCONF and RFC8040 RESTCONF.

For NETCONF we have

For RESTCONF we have

Both implementations share

There is a notable difference in where we take over from the Netty pipeline:

  • for netconf-* we integrate with raw ByteBufs
  • for restconf-* we integrate with netty-codec-http and netty-codec-http2, where a lot of the pipelined currently resides in transport/transport-http in terms of HttpRequest, HttpHeaders, etc.)