Lines Matching refs:mopPutChar
37 mopPutChar(u_char *pkt, int *idx, u_char value) in mopPutChar() function
90 mopPutChar (pkt,idx,10); in mopPutTime()
91 mopPutChar (pkt,idx,(timenow->tm_year / 100) + 19); in mopPutTime()
92 mopPutChar (pkt,idx,(timenow->tm_year % 100)); in mopPutTime()
93 mopPutChar (pkt,idx,(timenow->tm_mon + 1)); in mopPutTime()
94 mopPutChar (pkt,idx,(timenow->tm_mday)); in mopPutTime()
95 mopPutChar (pkt,idx,(timenow->tm_hour)); in mopPutTime()
96 mopPutChar (pkt,idx,(timenow->tm_min)); in mopPutTime()
97 mopPutChar (pkt,idx,(timenow->tm_sec)); in mopPutTime()
98 mopPutChar (pkt,idx,0x00); in mopPutTime()
99 mopPutChar (pkt,idx,0x00); in mopPutTime()
100 mopPutChar (pkt,idx,0x00); in mopPutTime()
112 mopPutChar (pkt, idx, MOP_K_PROTO_802_DSAP); in mopPutHeader()
113 mopPutChar (pkt, idx, MOP_K_PROTO_802_SSAP); in mopPutHeader()
114 mopPutChar (pkt, idx, MOP_K_PROTO_802_CNTL); in mopPutHeader()
115 mopPutChar (pkt, idx, 0x08); in mopPutHeader()
116 mopPutChar (pkt, idx, 0x00); in mopPutHeader()
117 mopPutChar (pkt, idx, 0x2b); in mopPutHeader()
120 mopPutChar(pkt, idx, (proto / 256)); in mopPutHeader()
121 mopPutChar(pkt, idx, (proto % 256)); in mopPutHeader()
124 mopPutChar(pkt, idx, (proto / 256)); in mopPutHeader()
125 mopPutChar(pkt, idx, (proto % 256)); in mopPutHeader()
127 mopPutChar(pkt, idx, (proto % 256)); in mopPutHeader()
128 mopPutChar(pkt, idx, (proto / 256)); in mopPutHeader()
144 mopPutChar(pkt, &idx, ((len - 16) % 256)); in mopPutLength()
145 mopPutChar(pkt, &idx, ((len - 16) / 256)); in mopPutLength()
150 mopPutChar(pkt, &idx, ((len - 14) / 256)); in mopPutLength()
151 mopPutChar(pkt, &idx, ((len - 14) % 256)); in mopPutLength()
153 mopPutChar(pkt, &idx, ((len - 14) % 256)); in mopPutLength()
154 mopPutChar(pkt, &idx, ((len - 14) / 256)); in mopPutLength()