Share via


LogDroppedPacket (Windows CE 5.0)

Send Feedback

This function is used by client dynamic-link libraries (DLLs) that monitor dropped packets.

typedef VOID (*PNAT_LOG_DROPPED_PACKET)(DWORDSourceAddr,DWORDDestAddr,USHORTSourcePort,USHORTDestPort,DWORDPacketSize,BYTEProtocol,DWORDProto1,DWORDProto2,DWORDProto3,DWORDProto4);

Parameters

  • SourceAddr
    [in] The source network address of the computer or networked device that initiated the packet that was dropped. The value is provided in TCP/IP network byte order format.

    Security Note   This information is taken from the packet data, and may have been faked or spoofed.

  • DestAddr
    [in] The destination network address for the packet that was dropped. The value is provided in TCP/IP network byte order format.

  • SourcePort
    [in] The source port number from which the packet originated. The value is provided in TCP/IP network byte order format.

  • DestPort
    [in] The destination port number for which the packet was targeted. The value is provided in TCP/IP network byte order format.

  • PacketSize
    [in] The size of the packet that was dropped.

  • Protocol
    [in] Indicates the network protocol (TCP, UDP) for this connection. The protocol is indicated by one of the NAT_PROTOCOL * flags listed in IPNat.h.

  • Proto1
    [in] Protocol-specific data.

  • Proto2
    [in] Protocol-specific data.

  • Proto3
    [in] Protocol-specific data.

  • Proto4
    [in] Protocol-specific data.

    **Note   **The values for the protocol-specific data depend on the specific protocol in use. The following table shows the corresponding values for the TCP and ICMP protocols. These values are not used for UDP.

    TCP ICMP
    Proto1 = SequenceNumber Proto1 = ICMP Type value (such as ICMPv6_ROUTER_SOLICIT and ICMPv6_ROUTER_ADVERT, as defined in ICMP6.h).
    Proto2 = AckNumber Proto2 = ICMP Code value (such as ICMPv6_ADDRESS_UNREACHABLE and ICMPv6_PORT_UNREACHABLE, as defined in ICMP6.h).
    Proto3 = WindowSize Proto3 Not used.
    Proto4 = ProtocolHeader Proto4 Not used.

Return Values

None.

Remarks

This function is on the critical path for network address translation (NAT), and therefore must return quickly to prevent degradation of performance.

Requirements

OS Versions: Windows CE .NET 4.1 and later.
Header: Natedit.h.
Link Library: Coredll.dll.

See Also

LogConnectionCreation | LogConnectionDeletion | LogInit

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.