Searched refs:inp (Results 1 - 25 of 45) sorted by relevance

12

/seL4-camkes-master/projects/lwip/src/include/lwip/priv/
H A Draw_priv.h59 raw_input_state_t raw_input(struct pbuf *p, struct netif *inp);
/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dupap.c124 static void upap_rauthreq(ppp_pcb *pcb, u_char *inp, int id, int len);
126 static void upap_rauthack(ppp_pcb *pcb, u_char *inp, int id, int len);
127 static void upap_rauthnak(ppp_pcb *pcb, u_char *inp, int id, int len);
306 u_char *inp; local
314 inp = inpacket;
319 GETCHAR(code, inp);
320 GETCHAR(id, inp);
321 GETSHORT(len, inp);
338 upap_rauthreq(pcb, inp, id, len);
343 upap_rauthack(pcb, inp, i
359 upap_rauthreq(ppp_pcb *pcb, u_char *inp, int id, int len) argument
458 upap_rauthack(ppp_pcb *pcb, u_char *inp, int id, int len) argument
493 upap_rauthnak(ppp_pcb *pcb, u_char *inp, int id, int len) argument
[all...]
H A Deap.c99 static void eap_input(ppp_pcb *pcb, u_char *inp, int inlen);
104 static int eap_printpkt(const u_char *inp, int inlen,
345 b64enc(bs, inp, inlen, outp)
347 u_char *inp;
354 bs->bs_bits = (bs->bs_bits << 8) | *inp++;
393 b64dec(bs, inp, inlen, outp)
395 u_char *inp;
403 if ((cp = strchr(base64, *inp++)) == NULL)
1250 write_pseudonym(esp, inp, len, id)
1252 u_char *inp;
1311 eap_request(ppp_pcb *pcb, u_char *inp, int id, int len) argument
1725 eap_response(ppp_pcb *pcb, u_char *inp, int id, int len) argument
2017 eap_success(ppp_pcb *pcb, u_char *inp, int id, int len) argument
2043 eap_failure(ppp_pcb *pcb, u_char *inp, int id, int len) argument
2070 eap_input(ppp_pcb *pcb, u_char *inp, int inlen) argument
2135 eap_printpkt(const u_char *inp, int inlen, void (*printer) (void *, const char *, ...), void *arg) argument
[all...]
H A Dfsm.c63 static void fsm_rconfreq(fsm *f, u_char id, u_char *inp, int len);
64 static void fsm_rconfack(fsm *f, int id, u_char *inp, int len);
65 static void fsm_rconfnakrej(fsm *f, int code, int id, u_char *inp, int len);
68 static void fsm_rcoderej(fsm *f, u_char *inp, int len);
319 u_char *inp; local
327 inp = inpacket;
332 GETCHAR(code, inp);
333 GETCHAR(id, inp);
334 GETSHORT(len, inp);
356 fsm_rconfreq(f, id, inp, le
392 fsm_rconfreq(fsm *f, u_char id, u_char *inp, int len) argument
459 fsm_rconfack(fsm *f, int id, u_char *inp, int len) argument
515 fsm_rconfnakrej(fsm *f, int code, int id, u_char *inp, int len) argument
645 fsm_rcoderej(fsm *f, u_char *inp, int len) argument
[all...]
H A Dpppol2tp.c348 u8_t *inp; local
372 inp = (u8_t*)p->payload;
373 GETSHORT(hflags, inp);
410 GETSHORT(len, inp);
415 GETSHORT(tunnel_id, inp);
416 GETSHORT(session_id, inp);
418 GETSHORT(ns, inp);
419 GETSHORT(nr, inp);
422 GETSHORT(offset, inp)
431 INCPTR(offset, inp);
487 u8_t *inp; local
[all...]
/seL4-camkes-master/projects/lwip/src/include/lwip/
H A Dicmp6.h56 void icmp6_input(struct pbuf *p, struct netif *inp);
H A Dnd6.h70 void nd6_input(struct pbuf *p, struct netif *inp);
H A Dtcpip.h79 err_t tcpip_inpkt(struct pbuf *p, struct netif *inp, netif_input_fn input_fn);
80 err_t tcpip_input(struct pbuf *p, struct netif *inp);
H A Dmld6.h79 void mld6_input(struct pbuf *p, struct netif *inp);
H A Dicmp.h80 void icmp_input(struct pbuf *p, struct netif *inp);
H A Digmp.h95 void igmp_input(struct pbuf *p, struct netif *inp, const ip4_addr_t *dest);
H A Dip6.h62 err_t ip6_input(struct pbuf *p, struct netif *inp);
H A Dip4.h71 err_t ip4_input(struct pbuf *p, struct netif *inp);
/seL4-camkes-master/projects/lwip/src/core/
H A Dip.c154 ip_input(struct pbuf *p, struct netif *inp) argument
158 return ip6_input(p, inp);
160 return ip4_input(p, inp);
H A Dudp.c125 * @param inp network interface on which the datagram was received (only used for IPv4)
130 udp_input_local_match(struct udp_pcb *pcb, struct netif *inp, u8_t broadcast) argument
132 LWIP_UNUSED_ARG(inp); /* in IPv6 only case */
136 LWIP_ASSERT("udp_input_local_match: invalid netif", inp != NULL);
166 ip4_addr_netcmp(ip_2_ip4(&pcb->local_ip), ip4_current_dest_addr(), netif_ip4_netmask(inp))) {
190 * @param inp network interface on which the datagram was received.
194 udp_input(struct pbuf *p, struct netif *inp) argument
203 LWIP_UNUSED_ARG(inp);
208 LWIP_ASSERT("udp_input: invalid netif", inp != NULL);
263 (udp_input_local_match(pcb, inp, broadcas
[all...]
/seL4-camkes-master/projects/lwip/src/api/
H A Dtcpip.c174 if (msg->msg.inp.input_fn(msg->msg.inp.p, msg->msg.inp.netif) != ERR_OK) {
175 pbuf_free(msg->msg.inp.p);
236 * @param inp the network interface on which the packet was received
240 tcpip_inpkt(struct pbuf *p, struct netif *inp, netif_input_fn input_fn) argument
244 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_inpkt: PACKET %p/%p\n", (void *)p, (void *)inp));
246 ret = input_fn(p, inp);
260 msg->msg.inp.p = p;
261 msg->msg.inp
283 tcpip_input(struct pbuf *p, struct netif *inp) argument
[all...]
/seL4-camkes-master/projects/lwip/src/core/ipv6/
H A Dicmp6.c80 * @param inp the netif on which this packet was received
83 icmp6_input(struct pbuf *p, struct netif *inp) argument
103 IF__NETIF_CHECKSUM_ENABLED(inp, NETIF_CHECKSUM_CHECK_ICMP6) {
121 nd6_input(p, inp);
132 mld6_input(p, inp);
167 reply_src = ip_2_ip6(ip6_select_source_address(inp, ip6_current_src_addr()));
186 IF__NETIF_CHECKSUM_ENABLED(inp, NETIF_CHECKSUM_GEN_ICMP6) {
195 LWIP_ICMP6_HL, 0, IP6_NEXTH_ICMP6, inp);
H A Dnd6.c284 * @param inp the netif on which this packet was received
287 nd6_input(struct pbuf *p, struct netif *inp) argument
316 ip6_addr_assign_zone(&target_address, IP6_UNICAST, inp);
339 if (!ip6_addr_isinvalid(netif_ip6_addr_state(inp, i)) &&
340 !ip6_addr_isduplicated(netif_ip6_addr_state(inp, i)) &&
341 ip6_addr_cmp(&target_address, netif_ip6_addr(inp, i))) {
343 nd6_duplicate_addr_detected(inp, i);
374 MEMCPY(neighbor_cache[i].lladdr, lladdr_opt->addr, inp->hwaddr_len);
412 MEMCPY(neighbor_cache[i].lladdr, lladdr_opt->addr, inp->hwaddr_len);
415 neighbor_cache[i].netif = inp;
775 ip6_addr_assign_zone(ip_2_ip6(&rdnss_address), IP6_UNKNOWN, inp); local
[all...]
H A Dip6.c363 * @param inp the netif on which this packet was received
366 ip6_forward(struct pbuf *p, struct ip6_hdr *iphdr, struct netif *inp) argument
417 if (netif == inp) {
504 * @param inp the netif on which this packet was received
509 ip6_input(struct pbuf *p, struct netif *inp) argument
539 if (LWIP_HOOK_IP6_INPUT(p, inp)) {
585 ip6_addr_assign_zone(ip_2_ip6(&ip_data.current_iphdr_dest), IP6_UNKNOWN, inp); local
586 ip6_addr_assign_zone(ip_2_ip6(&ip_data.current_iphdr_src), IP6_UNICAST, inp); local
592 ip_data.current_netif = inp;
593 ip_data.current_input_netif = inp;
[all...]
H A Dmld6.c224 * @param inp the netif on which this packet was received
227 mld6_input(struct pbuf *p, struct netif *inp) argument
252 group = netif_mld6_data(inp);
265 group = mld6_lookfor_group(inp, ip6_current_dest_addr());
277 group = mld6_lookfor_group(inp, ip6_current_dest_addr());
/seL4-camkes-master/projects/lwip/src/core/ipv4/
H A Dip4.c278 * @param inp the netif on which this packet was received
281 ip4_forward(struct pbuf *p, struct ip_hdr *iphdr, struct netif *inp) argument
286 LWIP_UNUSED_ARG(inp);
312 if (netif == inp) {
421 * @param inp the netif on which this packet was received
426 ip4_input(struct pbuf *p, struct netif *inp) argument
457 if (LWIP_HOOK_IP4_INPUT(p, inp)) {
499 IF__NETIF_CHECKSUM_ENABLED(inp, NETIF_CHECKSUM_CHECK_IP) {
521 if ((inp->flags & NETIF_FLAG_IGMP) && (igmp_lookfor_group(inp, ip4_current_dest_add
625 ip4_forward(p, (struct ip_hdr *)p->payload, inp); local
[all...]
H A Dicmp.c77 * @param inp the netif on which this packet was received
80 icmp_input(struct pbuf *p, struct netif *inp) argument
124 src = netif_ip4_addr(inp);
134 src = netif_ip4_addr(inp);
146 IF__NETIF_CHECKSUM_ENABLED(inp, NETIF_CHECKSUM_CHECK_ICMP) {
217 IF__NETIF_CHECKSUM_ENABLED(inp, NETIF_CHECKSUM_GEN_ICMP) {
238 IF__NETIF_CHECKSUM_ENABLED(inp, NETIF_CHECKSUM_GEN_IP) {
251 ICMP_TTL, 0, IP_PROTO_ICMP, inp);
/seL4-camkes-master/projects/lwip/src/include/netif/
H A Dlowpan6.h80 err_t tcpip_6lowpan_input(struct pbuf *p, struct netif *inp);
H A Dlowpan6_ble.h66 err_t tcpip_rfc7668_input(struct pbuf *p, struct netif *inp);
/seL4-camkes-master/projects/lwip/src/include/netif/ppp/
H A Dpppos.h118 err_t pppos_input_sys(struct pbuf *p, struct netif *inp);

Completed in 123 milliseconds

12