windows-nt/Source/XPSP1/NT/net/inc/icmpif.h
2020-09-26 16:20:57 +08:00

37 lines
1.3 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/********************************************************************/
/** Microsoft LAN Manager **/
/** Copyright(c) Microsoft Corp., 1990-1992 **/
/********************************************************************/
/* :ts=4 */
//** ICMPIF.H - ICMP echo private kernel/user request interface
//
#ifndef ICMPIF_INCLUDED
#define ICMPIF_INCLUDED
//
// Common ICMP request structure
//
typedef struct icmp_echo_request {
unsigned long Address; // Destination address
unsigned long Timeout; // Request timeout
unsigned short DataOffset; // Echo data
unsigned short DataSize; // Echo data size
unsigned char OptionsValid; // nonzero if options data is valid.
unsigned char Ttl; // IP header Time To Live
unsigned char Tos; // IP header Type of Service
unsigned char Flags; // IP header flags
unsigned short OptionsOffset; // IP options data
unsigned char OptionsSize; // IP options data size
unsigned char Padding; // 32-bit alignment padding
} ICMP_ECHO_REQUEST, *PICMP_ECHO_REQUEST;
//
// The reply structure is defined in ipexport.h
//
#endif // ICMPIF_INCLUDED