blob: ccfff64a0c67c063a6782f9382d23cc3dbd866b4 (
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);
|