blob: 8ea8ed564a30393a95b53e27b02b68aa0f569af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
struct CONNECTION
{
TCHAR strIntIp[16];
TCHAR strExtIp[16];
int intIntPort;
int intExtPort;
int state;
DWORD Pid;
TCHAR PName[260];
struct CONNECTION *next;
};
struct CONNECTION* GetConnectionsTable();
void deleteConnectionsTable(struct CONNECTION* head);
struct CONNECTION* searchConnection(struct CONNECTION* head, TCHAR *intIp, TCHAR *extIp, int intPort, int extPort, int state);
void getDnsName(TCHAR *strIp, TCHAR *strHostName, size_t len);
|