mirror of
https://github.com/netchx/netch.git
synced 2026-04-03 19:35:10 +08:00
20 lines
315 B
C++
20 lines
315 B
C++
#include "Utils.h"
|
|
|
|
#include "Data.h"
|
|
|
|
USHORT IPv4Checksum(PBYTE buffer, ULONG64 size)
|
|
{
|
|
UNREFERENCED_PARAMETER(buffer);
|
|
UNREFERENCED_PARAMETER(size);
|
|
|
|
return 0;
|
|
}
|
|
|
|
USHORT ICMPChecksum(PBYTE buffer, ULONG64 size)
|
|
{
|
|
UNREFERENCED_PARAMETER(buffer);
|
|
UNREFERENCED_PARAMETER(size);
|
|
|
|
return 0;
|
|
}
|