NG_DEFLATE(4) | Device Drivers Manual | NG_DEFLATE(4) |
ng_deflate
—
Deflate PPP compression (RFC 1979) netgraph node
type
#include
<sys/types.h>
#include
<netgraph/ng_deflate.h>
The deflate
node type implements the
Deflate sub-protocols of the Compression Control Protocol (CCP).
The node has two hooks, comp for compression
and decomp for decompression. Only one of them can be
connected at the same time, specifying node's operation mode. Typically that
hooks would be connected to the ng_ppp(4) node type hook
of the same name. Corresponding ng_ppp(4) node hook must
be switched to NG_PPP_DECOMPRESS_FULL
mode to permit
sending uncompressed frames.
This node type supports the following hooks:
Only one hook can be connected at the same time, specifying node's operation mode.
This node type supports the generic control messages, plus the following:
NGM_DEFLATE_CONFIG
(config
)struct ng_deflate_config { u_char enable; /* node enabled */ u_char windowBits; /* log2(Window size) */ };
NGM_DEFLATE_RESETREQ
(resetreq
)NGM_DEFLATE_CONFIG
message that
initiated the session. The receiver should respond by sending a PPP CCP
Reset-Request to the peer.
This message may also be received by this node type when a CCP Reset-Request or Reset-Ack is received by the local PPP entity. The node will respond by flushing its compression state so the sides can resynchronize.
NGM_DEFLATE_GET_STATS
(getstats
)struct ng_deflate_stats { uint64_t FramesPlain; uint64_t FramesComp; uint64_t FramesUncomp; uint64_t InOctets; uint64_t OutOctets; uint64_t Errors; };
NGM_DEFLATE_CLR_STATS
(clrstats
)NGM_DEFLATE_GETCLR_STATS
(getclrstats
)This node shuts down upon receipt of a
NGM_SHUTDOWN
control message, or when hook have been
disconnected.
netgraph(4), ng_ppp(4), ngctl(8)
J. Woods, PPP Deflate Protocol, RFC 1979.
W. Simpson, The Point-to-Point Protocol (PPP), RFC 1661.
Alexander Motin <mav@alkar.net>
Due to nature of netgraph PPP implementation there are possible race conditions between data packet and ResetAck CCP packet in case of packet loss. As result, packet loss can produce bigger performance degradation than supposed by protocol.
December 23, 2006 | Debian |