mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-25 02:49:52 +03:00
24 lines
450 B
C
24 lines
450 B
C
// SoftEther VPN Source Code - Developer Edition Master Branch
|
|
// Cedar Communication Module
|
|
|
|
|
|
// WaterMark.h
|
|
// Header of WaterMark.c
|
|
|
|
#ifndef WATERMARK_H
|
|
#define WATERMARK_H
|
|
|
|
#include "Mayaqua/MayaType.h"
|
|
|
|
// Digital watermark
|
|
extern BYTE WaterMark[];
|
|
extern BYTE Saitama[];
|
|
|
|
UINT SizeOfWaterMark();
|
|
UINT SizeOfSaitama();
|
|
|
|
#define MAX_WATERMARK_SIZE (SizeOfWaterMark() + HTTP_PACK_RAND_SIZE_MAX * 2)
|
|
|
|
#endif // WATERMARK_H
|
|
|