常用的获取端口信息的函数:

GetTcpTable
GetExtendedTcpTable
GetUdpTable
GetExtendedUdpTable

GetTcpTable function

  • 12/05/2018
  • 3 minutes to read

The GetTcpTable function retrieves the IPv4 TCP connection table.

Syntax

C++Copy
  1. ULONG GetTcpTable(
  2. PMIB_TCPTABLE TcpTable,
  3. PULONG SizePointer,
  4. BOOL Order
  5. );

Parameters

TcpTable

A pointer to a buffer that receives the TCP connection table as a MIB_TCPTABLE structure.

SizePointer

On input, specifies the size in bytes of the buffer pointed to by the pTcpTable parameter.

On output, if the buffer is not large enough to hold the returned connection table, the function sets this parameter equal to the required buffer size in bytes.

On the Windows SDK released for Windows Vista and later, the data type for this parameter is changed to a PULONG which is equivalent to a PDWORD.

Order

A Boolean value that specifies whether the TCP connection table should be sorted. If this parameter is TRUE, the table is sorted in the order of:

  1. Local IP address
  2. Local port
  3. Remote IP address
  4. Remote port

Return Value

If the function succeeds, the return value is NO_ERROR.

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

Return code Description
ERROR_INSUFFICIENT_BUFFER
The buffer pointed to by the pTcpTable parameter is not large enough. The required size is returned in the DWORD variable pointed to by the pdwSizeparameter.

This error is also returned if the pTcpTable parameter is NULL.

ERROR_INVALID_PARAMETER
The pdwSize parameter is NULL, or GetTcpTable is unable to write to the memory pointed to by the pdwSize parameter.
ERROR_NOT_SUPPORTED
This function is not supported on the operating system in use on the local system.
STATUS_UNSUCCESSFUL
If you receive this return code then calling the function again is usually enough to clear the issue and get the desired result. This return code can be a consequence of the system being under high load. For example, if the size of the TCP connection table changes by more than 2 additional items 3 consecutive times.
Other
Use FormatMessage to obtain the message string for the returned error.

Remarks

On the Windows SDK released for Windows Vista and later, the return value from the GetTcpTable function is changed to a data type of ULONG which is equivalent to a DWORD.

Examples

The following example retrieves the TCP connection table for IPv4 and prints the state of each connection.

C++Copy
  1. // Need to link with Iphlpapi.lib and Ws2_32.lib
  2. #include <winsock2.h>
  3. #include <ws2tcpip.h>
  4. #include <iphlpapi.h>
  5. #include <stdio.h>
  6.  
  7. #pragma comment(lib, "iphlpapi.lib")
  8. #pragma comment(lib, "ws2_32.lib")
  9.  
  10. #define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x))
  11. #define FREE(x) HeapFree(GetProcessHeap(), 0, (x))
  12.  
  13. /* Note: could also use malloc() and free() */
  14.  
  15. int main()
  16. {
  17.  
  18. // Declare and initialize variables
  19. PMIB_TCPTABLE pTcpTable;
  20. DWORD dwSize = ;
  21. DWORD dwRetVal = ;
  22.  
  23. char szLocalAddr[];
  24. char szRemoteAddr[];
  25.  
  26. struct in_addr IpAddr;
  27.  
  28. int i;
  29.  
  30. pTcpTable = (MIB_TCPTABLE *) MALLOC(sizeof (MIB_TCPTABLE));
  31. if (pTcpTable == NULL) {
  32. printf("Error allocating memory\n");
  33. return ;
  34. }
  35.  
  36. dwSize = sizeof (MIB_TCPTABLE);
  37. // Make an initial call to GetTcpTable to
  38. // get the necessary size into the dwSize variable
  39. if ((dwRetVal = GetTcpTable(pTcpTable, &dwSize, TRUE)) ==
  40. ERROR_INSUFFICIENT_BUFFER) {
  41. FREE(pTcpTable);
  42. pTcpTable = (MIB_TCPTABLE *) MALLOC(dwSize);
  43. if (pTcpTable == NULL) {
  44. printf("Error allocating memory\n");
  45. return ;
  46. }
  47. }
  48. // Make a second call to GetTcpTable to get
  49. // the actual data we require
  50. if ((dwRetVal = GetTcpTable(pTcpTable, &dwSize, TRUE)) == NO_ERROR) {
  51. printf("\tNumber of entries: %d\n", (int) pTcpTable->dwNumEntries);
  52. for (i = ; i < (int) pTcpTable->dwNumEntries; i++) {
  53. IpAddr.S_un.S_addr = (u_long) pTcpTable->table[i].dwLocalAddr;
  54. strcpy_s(szLocalAddr, sizeof (szLocalAddr), inet_ntoa(IpAddr));
  55. IpAddr.S_un.S_addr = (u_long) pTcpTable->table[i].dwRemoteAddr;
  56. strcpy_s(szRemoteAddr, sizeof (szRemoteAddr), inet_ntoa(IpAddr));
  57.  
  58. printf("\n\tTCP[%d] State: %ld - ", i,
  59. pTcpTable->table[i].dwState);
  60. switch (pTcpTable->table[i].dwState) {
  61. case MIB_TCP_STATE_CLOSED:
  62. printf("CLOSED\n");
  63. break;
  64. case MIB_TCP_STATE_LISTEN:
  65. printf("LISTEN\n");
  66. break;
  67. case MIB_TCP_STATE_SYN_SENT:
  68. printf("SYN-SENT\n");
  69. break;
  70. case MIB_TCP_STATE_SYN_RCVD:
  71. printf("SYN-RECEIVED\n");
  72. break;
  73. case MIB_TCP_STATE_ESTAB:
  74. printf("ESTABLISHED\n");
  75. break;
  76. case MIB_TCP_STATE_FIN_WAIT1:
  77. printf("FIN-WAIT-1\n");
  78. break;
  79. case MIB_TCP_STATE_FIN_WAIT2:
  80. printf("FIN-WAIT-2 \n");
  81. break;
  82. case MIB_TCP_STATE_CLOSE_WAIT:
  83. printf("CLOSE-WAIT\n");
  84. break;
  85. case MIB_TCP_STATE_CLOSING:
  86. printf("CLOSING\n");
  87. break;
  88. case MIB_TCP_STATE_LAST_ACK:
  89. printf("LAST-ACK\n");
  90. break;
  91. case MIB_TCP_STATE_TIME_WAIT:
  92. printf("TIME-WAIT\n");
  93. break;
  94. case MIB_TCP_STATE_DELETE_TCB:
  95. printf("DELETE-TCB\n");
  96. break;
  97. default:
  98. printf("UNKNOWN dwState value\n");
  99. break;
  100. }
  101. printf("\tTCP[%d] Local Addr: %s\n", i, szLocalAddr);
  102. printf("\tTCP[%d] Local Port: %d \n", i,
  103. ntohs((u_short)pTcpTable->table[i].dwLocalPort));
  104. printf("\tTCP[%d] Remote Addr: %s\n", i, szRemoteAddr);
  105. printf("\tTCP[%d] Remote Port: %d\n", i,
  106. ntohs((u_short)pTcpTable->table[i].dwRemotePort));
  107. }
  108. } else {
  109. printf("\tGetTcpTable failed with %d\n", dwRetVal);
  110. FREE(pTcpTable);
  111. return ;
  112. }
  113.  
  114. if (pTcpTable != NULL) {
  115. FREE(pTcpTable);
  116. pTcpTable = NULL;
  117. }
  118.  
  119. return ;
  120. }

Requirements

   
Minimum supported client Windows 2000 Professional [desktop apps | UWP apps]
Minimum supported server Windows 2000 Server [desktop apps | UWP apps]
Target Platform Windows
Header iphlpapi.h
Library Iphlpapi.lib
DLL Iphlpapi.dll

vc枚举本机端口信息API的更多相关文章

  1. vc枚举本机端口信息

    关于查看本机端口信息,可能大多数人都知道在cmd下的netstat 命令,殊不知该命令在底层也是调用相关api来实现的,相关函数有:GetTcpTableGetExtendedTcpTableGetU ...

  2. 利用DescriptionAttribute定义枚举值的描述信息 z

    System.ComponentModel命名空间下有个名为DescriptionAttribute的类用于指定属性或事件的说明,我所调用的枚举值描述信息就是DescriptionAttribute类 ...

  3. 【点滴积累】通过特性(Attribute)为枚举添加更多的信息

    转:http://www.cnblogs.com/IPrograming/archive/2013/05/26/Enum_DescriptionAttribute.html [点滴积累]通过特性(At ...

  4. linux下用iptables做本机端口转发方法(转载)

    一 :从一台机到另一台机端口转发 启用网卡转发功能 #echo 1 > /proc/sys/net/ipv4/ip_forward 举例:从192.168.0.132:21521(新端口)访问1 ...

  5. iptables 从一台机到另一台机端口转发

    启用网卡转发功能#echo 1 > /proc/sys/net/ipv4/ip_forward 举例:从192.168.0.132:21521(新端口)访问192.168.0.211:1521端 ...

  6. Docker容器内部端口映射到外部宿主机端口的方法小结

    转自:https://www.cnblogs.com/kevingrace/p/9453987.html Docker允许通过外部访问容器或者容器之间互联的方式来提供网络服务.容器启动之后,容器中可以 ...

  7. html5获取地理位置信息API

    html5获取地理位置信息API 在HTML5中,可以看下如何使用Geolocation API来获得用户的地理位置信息,如果该浏览器支持的话,且设备具有定位功能,就能够直接使用这组API来获取当前位 ...

  8. 写了个TP5下PHP和手机端通信的API接口校验

    写了个PHP和手机端通信的API接口校验 直接发函数吧 public function _initialize() { //定义密码和盐 $password="123456"; $ ...

  9. 微信小程序把玩(三十八)获取设备信息 API

    原文:微信小程序把玩(三十八)获取设备信息 API 获取设备信息这里分为四种, 主要属性: 网络信息wx.getNetWorkType, 系统信息wx.getSystemInfo, 重力感应数据wx. ...

随机推荐

  1. 架构:MVC

    ylbtech-架构:MVC MVC全名是Model View Controller,是模型(model)-视图(view)-控制器(controller)的缩写,一种软件设计典范,用一种业务逻辑.数 ...

  2. div 加滚动条的方法

    div 加滚动条的方法: <div style="position:absolute; height:400px; overflow:auto"></div> ...

  3. django上课笔记4-复习数据库操作-复习模板-Seccion-详细cookie和session的区别

    一.复习数据库操作 字段类型 字符串 EmailField(CharField): IPAddressField(Field) URLField(CharField) SlugField(CharFi ...

  4. js、匿名函数、闭包、回调函数

    234567891011121314151617181920212223242526272829303132333435 闭包 闭包:闭包是指有权访问另一个函数作用域中的变量的函数 函数嵌套一个函数, ...

  5. E20170509-hm

    slice   vt. 切成片; 切下; 划分;  n. 薄片,切片 slicing  n. 切割; 限幅,限制; inspect    v. 视察; 检查 inspector  n. 检查员; (英 ...

  6. CodeForces 13C【DP】

    题意: 给你n个数,每次只能让一个数+1,或者-1,目标是最终使这个序列构成一个非递减的序列: n是5e3,复杂度n^2内.值是1e9: 思路: 可以发现子结构是保证一个区间的非递减, 如果只是dp[ ...

  7. CSS选择器优先级【转】

    样式的优先级 多重样式(Multiple Styles):如果外部样式.内部样式和内联样式同时应用于同一个元素,就是使多重样式的情况. 一般情况下,优先级如下: (外部样式)External styl ...

  8. 【SCOI2016】Day1 模拟

    2018.8.16 8:00~11:06 先看t1,成功读错题... 以为是一个字符串的所有后缀都得在计划表里,否则权值就得是$n^2$ 然后花了一个小时多一点写了一个错误的做法 然后没有分 才发现看 ...

  9. 递推DP URAL 1031 Railway Tickets

    题目传送门 /* 简单递推DP:读题烦!在区间内的都更新一遍,dp[]初始化INF 注意:s1与s2大小不一定,坑! 详细解释:http://blog.csdn.net/kk303/article/d ...

  10. 复习Java和前端、后端框架等。

    以下便是我开始复习时做的笔记.