Home
last modified time | relevance | path

Searched refs:PPP_FCS (Results 1 – 2 of 2) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dppp.c898 fcsOut = PPP_FCS(fcsOut, PPP_ALLSTATIONS); in pppifOutput()
900 fcsOut = PPP_FCS(fcsOut, PPP_UI); in pppifOutput()
905 fcsOut = PPP_FCS(fcsOut, c); in pppifOutput()
909 fcsOut = PPP_FCS(fcsOut, c); in pppifOutput()
923 fcsOut = PPP_FCS(fcsOut, c); in pppifOutput()
1112 fcsOut = PPP_FCS(fcsOut, c); in pppWrite()
1970 pcrx->inFCS = PPP_FCS(pcrx->inFCS, curChar); in pppInProc()
Dppp_impl.h155 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff]) macro