mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.0 KiB
75 lines
2.0 KiB
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
pastlog.h
|
|
|
|
Abstract:
|
|
|
|
This module contains text messages used to generate event-log entries
|
|
by the component.
|
|
|
|
Author:
|
|
|
|
Qiang Wang (qiangw) 10-Apr-2000
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _NATHLP_PASTLOG_H_
|
|
#define _NATHLP_PASTLOG_H_
|
|
|
|
#define IP_PAST_LOG_BASE 36000
|
|
|
|
#define IP_PAST_LOG_NAT_INTERFACE_IGNORED (IP_PAST_LOG_BASE+1)
|
|
/*
|
|
* The PAST transparent proxy detected network address translation (NAT)
|
|
* enabled on the interface with index '%1'.
|
|
* The agent has disabled itself on the interface in order to avoid
|
|
* confusing clients.
|
|
*/
|
|
|
|
#define IP_PAST_LOG_ACTIVATE_FAILED (IP_PAST_LOG_BASE+2)
|
|
/*
|
|
* The PAST transparent proxy was unable to bind to the IP address %1.
|
|
* This error may indicate a problem with TCP/IP networking.
|
|
* The data is the error code.
|
|
*/
|
|
|
|
#define IP_PAST_LOG_RECEIVE_FAILED (IP_PAST_LOG_BASE+3)
|
|
/*
|
|
* The PAST transparent proxy encountered a network error while
|
|
* attempting to receive messages on the interface with IP address %1.
|
|
* The data is the error code.
|
|
*/
|
|
|
|
#define IP_PAST_LOG_ALLOCATION_FAILED (IP_PAST_LOG_BASE+4)
|
|
/*
|
|
* The PAST transparent proxy was unable to allocate %1 bytes of memory.
|
|
* This may indicate that the system is low on virtual memory,
|
|
* or that the memory-manager has encountered an internal error.
|
|
*/
|
|
|
|
#define IP_PAST_LOG_ACCEPT_FAILED (IP_PAST_LOG_BASE+5)
|
|
/*
|
|
* The PAST transparent proxy encountered a network error while
|
|
* attempting to accept connections on the interface with IP address %1.
|
|
* The data is the error code.
|
|
*/
|
|
|
|
#define IP_PAST_LOG_SEND_FAILED (IP_PAST_LOG_BASE+7)
|
|
/*
|
|
* The PAST transparent proxy encountered a network error while
|
|
* attempting to send messages on the interface with IP address %1.
|
|
* The data is the error code.
|
|
*/
|
|
|
|
#define IP_PAST_LOG_END (IP_PAST_LOG_BASE+999)
|
|
/*
|
|
* end.
|
|
*/
|
|
|
|
#endif // _NATHLP_PASTLOG_H_
|