|
Bitdefender Hypervisor Memory Introspection
|
Go to the source code of this file.
Functions | |
| DWORD | IntNetAddrToStr (const INTRO_NET_AF Family, const INTRONET_ADDRESS *Address, CHAR *String) |
| Converts an IP address to a string. More... | |
| static INTRO_NET_STATE | IntNetConvertStateLix (const LIX_SOCK_STATE State) |
| Converts a Linux specific connection state to an Introcore connection state. More... | |
| static INTRO_NET_STATE | IntNetConvertStateWin (const WIN_SOCK_STATE State) |
| Converts a Windows specific connection state to an Introcore connection state. More... | |
| INTRO_NET_STATE | IntNetConvertState (const DWORD State) |
| Converts a guest connection state to an Introcore connection state. More... | |
| DWORD IntNetAddrToStr | ( | const INTRO_NET_AF | Family, |
| const INTRONET_ADDRESS * | Address, | ||
| CHAR * | String | ||
| ) |
Converts an IP address to a string.
| [in] | Family | The type of address. |
| [in] | Address | Pointer to an address. |
| [in] | String | Pointer to a buffer that, on success, will contain a NULL-terminated string that represents the provided address. Must be at least INTRONET_MIN_BUFFER_SIZE long. |
Definition at line 11 of file intronet.c.
Referenced by IntLixNetSendTaskConnections(), IntNetStateToString(), and IntWinNetDumpConnection().
| INTRO_NET_STATE IntNetConvertState | ( | const DWORD | State | ) |
Converts a guest connection state to an Introcore connection state.
| [in] | State | Connection state to be converted. |
Definition at line 168 of file intronet.c.
Referenced by IntLixNetGetConnectionFromSocket(), IntNetStateToString(), and IntWinNetGetPortsAndState().
|
static |
Converts a Linux specific connection state to an Introcore connection state.
| [in] | State | Connection state to be converted. |
Definition at line 78 of file intronet.c.
Referenced by IntNetConvertState().
|
static |
Converts a Windows specific connection state to an Introcore connection state.
| [in] | State | Connection state to be converted. |
Definition at line 123 of file intronet.c.
Referenced by IntNetConvertState().