Source code of Windows XP (NT5)
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.
|
|
/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
alglog.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:
--*/
#pragma once
#define IP_ALG_LOG_BASE 35000
#define IP_ALG_LOG_NAT_INTERFACE_IGNORED (IP_ALG_LOG_BASE+1)
/*
* The ALG 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_ALG_LOG_ACTIVATE_FAILED (IP_ALG_LOG_BASE+2)
/*
* The ALG 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_ALG_LOG_RECEIVE_FAILED (IP_ALG_LOG_BASE+3)
/*
* The ALG 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_ALG_LOG_ALLOCATION_FAILED (IP_ALG_LOG_BASE+4)
/*
* The ALG 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_ALG_LOG_ACCEPT_FAILED (IP_ALG_LOG_BASE+5)
/*
* The ALG 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_ALG_LOG_SEND_FAILED (IP_ALG_LOG_BASE+7)
/*
* The ALG 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_ALG_LOG_END (IP_ALG_LOG_BASE+999)
/*
* end. */
|