Lines Matching refs:ip_ptr
106 UINT _nx_ip_dispatch_process(NX_IP *ip_ptr, NX_PACKET *packet_ptr, UINT protocol) in _nx_ip_dispatch_process() argument
165 NX_ICMPV6_SEND_PARAMETER_PROBLEM(ip_ptr, packet_ptr, 1, nx_packet_option_offset); in _nx_ip_dispatch_process()
175 drop_packet = _nx_ipv6_process_hop_by_hop_option(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
221 drop_packet = _nx_ipv6_process_hop_by_hop_option(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
228 NX_ICMPV6_SEND_PARAMETER_PROBLEM(ip_ptr, packet_ptr, 1, nx_packet_option_offset); in _nx_ip_dispatch_process()
240 NX_ICMPV6_SEND_PARAMETER_PROBLEM(ip_ptr, packet_ptr, 1, nx_packet_option_offset); in _nx_ip_dispatch_process()
250 drop_packet = _nx_ipv6_process_routing_option(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
262 NX_ICMPV6_SEND_PARAMETER_PROBLEM(ip_ptr, packet_ptr, 1, nx_packet_option_offset); in _nx_ip_dispatch_process()
278 drop_packet = _nx_ipv6_process_fragment_option(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
314 if (ip_ptr -> nx_ip_ipsec_authentication_header_receive == NX_NULL) in _nx_ip_dispatch_process()
323 …ret = ip_ptr -> nx_ip_ipsec_authentication_header_receive(ip_ptr, packet_ptr, &next_protocol, &pa… in _nx_ip_dispatch_process()
351 if (ip_ptr -> nx_ip_ipsec_encapsulating_security_payload_receive == NX_NULL) in _nx_ip_dispatch_process()
360 …ret = ip_ptr -> nx_ip_ipsec_encapsulating_security_payload_receive(ip_ptr, packet_ptr, &next_prot… in _nx_ip_dispatch_process()
421 if (_nx_ipsec_sa_ingress_lookup(ip_ptr, &src_addr, &dest_addr, 0, (UCHAR)protocol, in _nx_ip_dispatch_process()
459 if ((ip_ptr -> nx_ip_raw_ip_processing) && (ip_ptr -> nx_ip_raw_packet_filter)) in _nx_ip_dispatch_process()
463 … if ((ip_ptr -> nx_ip_raw_ip_processing)(ip_ptr, protocol << 16, packet_ptr) == NX_SUCCESS) in _nx_ip_dispatch_process()
481 if (ip_ptr -> nx_ip_tcp_packet_receive) in _nx_ip_dispatch_process()
485 (ip_ptr -> nx_ip_tcp_packet_receive)(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
504 if (ip_ptr -> nx_ip_icmpv6_packet_process != NX_NULL) in _nx_ip_dispatch_process()
508 ip_ptr -> nx_ip_icmpv6_packet_process(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
525 if (ip_ptr -> nx_ip_icmp_packet_receive != NX_NULL) in _nx_ip_dispatch_process()
530 ip_ptr -> nx_ip_icmp_packet_receive(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
540 if (ip_ptr -> nx_ip_igmp_packet_receive != NX_NULL) in _nx_ip_dispatch_process()
545 ip_ptr -> nx_ip_igmp_packet_receive(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
564 if (ip_ptr -> nx_ip_udp_packet_receive) in _nx_ip_dispatch_process()
568 (ip_ptr -> nx_ip_udp_packet_receive)(ip_ptr, packet_ptr); in _nx_ip_dispatch_process()
582 if (ip_ptr -> nx_ip_raw_ip_processing) in _nx_ip_dispatch_process()
585 if (ip_ptr -> nx_ip_raw_packet_filter == NX_NULL) in _nx_ip_dispatch_process()
588 … if ((ip_ptr -> nx_ip_raw_ip_processing)(ip_ptr, protocol << 16, packet_ptr) == NX_SUCCESS) in _nx_ip_dispatch_process()
600 … NX_ICMPV4_SEND_DEST_UNREACHABLE(ip_ptr, packet_ptr, NX_ICMP_PROTOCOL_UNREACH_CODE); in _nx_ip_dispatch_process()
610 … NX_ICMPV6_SEND_PARAMETER_PROBLEM(ip_ptr, packet_ptr, 1, nx_packet_option_offset); in _nx_ip_dispatch_process()
618 ip_ptr -> nx_ip_unknown_protocols_received++; in _nx_ip_dispatch_process()
708 ip_ptr -> nx_ip_total_packets_delivered--; in _nx_ip_dispatch_process()
711 ip_ptr -> nx_ip_total_bytes_received -= packet_ptr -> nx_packet_length; in _nx_ip_dispatch_process()
714 ip_ptr -> nx_ip_receive_packets_dropped++; in _nx_ip_dispatch_process()