Skip to content

Latest commit

 

History

History
150 lines (122 loc) · 4.6 KB

nf-iphlpapi-settcpentry.md

File metadata and controls

150 lines (122 loc) · 4.6 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:iphlpapi.SetTcpEntry
SetTcpEntry function (iphlpapi.h)
The SetTcpEntry function sets the state of a TCP connection.
SetTcpEntry
SetTcpEntry function [IP Helper]
_iphlp_settcpentry
iphlp.settcpentry
iphlpapi/SetTcpEntry
iphlp\settcpentry.htm
IpHlp
5916f66d-3c85-406d-b6f9-6c1c84161be4
12/05/2018
SetTcpEntry, SetTcpEntry function [IP Helper], _iphlp_settcpentry, iphlp.settcpentry, iphlpapi/SetTcpEntry
iphlpapi.h
Windows
Windows 2000 Professional [desktop apps only]
Windows 2000 Server [desktop apps only]
Iphlpapi.lib
Iphlpapi.dll
Windows
19H1
SetTcpEntry
iphlpapi/SetTcpEntry
c++
APIRef
kbSyntax
DllExport
Iphlpapi.dll
SetTcpEntry

SetTcpEntry function

-description

The SetTcpEntry function sets the state of a TCP connection.

-parameters

-param pTcpRow [in]

A pointer to a MIB_TCPROW structure. This structure specifies information to identify the TCP connection to modify. It also specifies the new state for the TCP connection. The caller must specify values for all the members in this structure.

-returns

The function returns NO_ERROR (zero) if the function is successful.

If the function fails, the return value is one of the following error codes.

Return code/value Description
ERROR_ACCESS_DENIED
Access is denied. This error is returned on Windows Vista and Windows Server 2008 under several conditions that include the following: the user lacks the required administrative privileges on the local computer or the application is not running in an enhanced shell as the built-in Administrator (RunAs administrator).
ERROR_INVALID_PARAMETER
An input parameter is invalid, no action was taken. This error is returned if the pTcpRow parameter is NULL or the Row member in the MIB_TCPROW structure pointed to by the pTcpRow parameter is not set to MIB_TCP_STATE_DELETE_TCB.
ERROR_NOT_SUPPORTED
The IPv4 transport is not configured on the local computer.
317
The function is unable to set the TCP entry since the application is running non-elevated.
Other
Use FormatMessage to obtain the message string for the returned error.

-remarks

Currently, the only state to which a TCP connection can be set is MIB_TCP_STATE_DELETE_TCB.

On Windows Vista and later, the SetTcpEntry function can only be called by a user logged on as a member of the Administrators group. If SetTcpEntry is called by a user that is not a member of the Administrators group, the function call will fail and ERROR_ACCESS_DENIED is returned.

The SetTcpEntry function can also fail because of user account control (UAC) on Windows Vista and later. If an application that contains this function is executed by a user logged on as a member of the Administrators group other than the built-in Administrator, this call will fail unless the application has been marked in the manifest file with a requestedExecutionLevel set to requireAdministrator. If the application lacks this manifest file, a user logged on as a member of the Administrators group other than the built-in Administrator must then be executing the application in an enhanced shell as the built-in Administrator (RunAs administrator) for this function to succeed.

-see-also

IP Helper Function Reference

IP Helper Start Page

MIB_TCPROW