Home
last modified time | relevance | path

Searched refs:PPP_MRU (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Ddemand.c75 if (framemax < PPP_MRU) in demand_conf()
76 framemax = PPP_MRU; in demand_conf()
H A Dlcp.c507 wo->mru = PPP_MRU;
614 mru = PPP_MRU > absmax_mru ? absmax_mru : PPP_MRU;
881 return (LENCISHORT(go->neg_mru && go->mru != PPP_MRU) +
961 ADDCISHORT(CI_MRU, go->neg_mru && go->mru != PPP_MRU, go->mru);
1282 if (go->neg_mru && go->mru != PPP_MRU) {
1285 (cishort <= PPP_MRU && cishort <= absmax_mru))
1493 if ((go->neg_mru && go->mru != PPP_MRU)
1497 if (cishort < PPP_MRU && cishort < absmax_mru) {
2402 mtu = (ho->neg_mru ? ho->mru: PPP_MRU);
2409 mru = (go->neg_mru? MAX(wo->mru, go->mru): PPP_MRU);
[all …]
H A Dmain.c166 u_char outpacket_buf[PPP_MRU+PPP_HDRLEN]; /* buffer for outgoing packet */
167 u_char inpacket_buf[PPP_MRU+PPP_HDRLEN]; /* buffer for incoming packet */
168 u_char nak_buffer[PPP_MRU]; /* where we construct a nak packet */
H A Dfsm.c434 if (inp >= outpacket_buf && inp < outpacket_buf+PPP_MRU+PPP_HDRLEN)
H A Dsys-solaris.c1704 data.maxlen = PPP_MRU + PPP_HDRLEN;
/illumos-gate/usr/src/uts/common/net/
H A Dppp_defs.h55 #define PPP_MRU 1500 /* default MRU = max length of info field */ macro
/illumos-gate/usr/src/uts/common/io/ppp/spppasyn/
H A Dspppasyn.c414 state->sa_mru = PPP_MRU; /* default of 1500 bytes */ in spppasyn_open()
1514 if ((maxlen = state->sa_mru) < PPP_MRU) in ahdlc_decode()
1515 maxlen = PPP_MRU; in ahdlc_decode()
/illumos-gate/usr/src/uts/common/io/ppp/sppp/
H A Dsppp.c1232 if (mru < PPP_MRU) { in sppp_inner_ioctl()
1233 mru = PPP_MRU; in sppp_inner_ioctl()
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dspppcomp.c248 cp->cp_mru = PPP_MRU; in spppcomp_open()