mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-25 02:49:52 +03:00
[src/Cedar/Logging.c:675]: (style) The function 'HubLog' is never used.
[src/Cedar/Logging.c:884]: (style) The function 'IPCLog' is never used. [src/Cedar/Logging.c:291]: (style) The function 'PrintEraseFileList' is never used. [src/Cedar/Logging.c:1021]: (style) The function 'SecLog' is never used. [src/Cedar/Logging.c:618]: (style) The function 'ServerLog' is never used. [src/Cedar/Logging.c:2276]: (style) The function 'SetLogDirName' is never used. [src/Cedar/Logging.c:2296]: (style) The function 'SetLogPrefix' is never used. [src/Cedar/Logging.c:993]: (style) The function 'WriteMultiLineLog' is never used.
This commit is contained in:
parent
f1b44906f6
commit
91d3084be8
@ -287,23 +287,6 @@ void FreeEraseFileList(LIST *o)
|
|||||||
ReleaseList(o);
|
ReleaseList(o);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show the deleting file list
|
|
||||||
void PrintEraseFileList(LIST *o)
|
|
||||||
{
|
|
||||||
UINT i;
|
|
||||||
// Validate arguments
|
|
||||||
if (o == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0;i < LIST_NUM(o);i++)
|
|
||||||
{
|
|
||||||
ERASE_FILE *f = LIST_DATA(o, i);
|
|
||||||
Print("%I64u - %s\n", f->UpdateTime, f->FullPath);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generate a deleting file list of the specified directory
|
// Generate a deleting file list of the specified directory
|
||||||
void EnumEraseFile(LIST *o, char *dirname)
|
void EnumEraseFile(LIST *o, char *dirname)
|
||||||
{
|
{
|
||||||
@ -614,23 +597,6 @@ void ELog(ERASER *e, char *name, ...)
|
|||||||
va_end(args);
|
va_end(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Take the log of the server
|
|
||||||
void ServerLog(CEDAR *c, wchar_t *fmt, ...)
|
|
||||||
{
|
|
||||||
wchar_t buf[MAX_SIZE * 2];
|
|
||||||
va_list args;
|
|
||||||
// Validate arguments
|
|
||||||
if (fmt == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
va_start(args, fmt);
|
|
||||||
UniFormatArgs(buf, sizeof(buf), fmt, args);
|
|
||||||
|
|
||||||
WriteServerLog(c, buf);
|
|
||||||
va_end(args);
|
|
||||||
}
|
|
||||||
void SLog(CEDAR *c, char *name, ...)
|
void SLog(CEDAR *c, char *name, ...)
|
||||||
{
|
{
|
||||||
wchar_t buf[MAX_SIZE * 2];
|
wchar_t buf[MAX_SIZE * 2];
|
||||||
@ -672,22 +638,6 @@ void CLog(CLIENT *c, char *name, ...)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Take the security log of the HUB
|
// Take the security log of the HUB
|
||||||
void HubLog(HUB *h, wchar_t *fmt, ...)
|
|
||||||
{
|
|
||||||
wchar_t buf[MAX_SIZE * 2];
|
|
||||||
va_list args;
|
|
||||||
// Validate arguments
|
|
||||||
if (fmt == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
va_start(args, fmt);
|
|
||||||
UniFormatArgs(buf, sizeof(buf), fmt, args);
|
|
||||||
|
|
||||||
WriteHubLog(h, buf);
|
|
||||||
va_end(args);
|
|
||||||
}
|
|
||||||
void ALog(ADMIN *a, HUB *h, char *name, ...)
|
void ALog(ADMIN *a, HUB *h, char *name, ...)
|
||||||
{
|
{
|
||||||
wchar_t buf[MAX_SIZE * 2];
|
wchar_t buf[MAX_SIZE * 2];
|
||||||
@ -880,34 +830,6 @@ void PPPLog(PPP_SESSION *p, char *name, ...)
|
|||||||
WriteServerLog(p->Cedar, buf);
|
WriteServerLog(p->Cedar, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write an IPC log
|
|
||||||
void IPCLog(IPC *ipc, char *name, ...)
|
|
||||||
{
|
|
||||||
wchar_t buf[MAX_SIZE * 2];
|
|
||||||
va_list args;
|
|
||||||
HUB *h;
|
|
||||||
// Validate arguments
|
|
||||||
if (name == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
h = GetHub(ipc->Cedar, ipc->HubName);
|
|
||||||
|
|
||||||
if (h == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
va_start(args, name);
|
|
||||||
UniFormatArgs(buf, sizeof(buf), _UU(name), args);
|
|
||||||
|
|
||||||
WriteHubLog(h, buf);
|
|
||||||
va_end(args);
|
|
||||||
|
|
||||||
ReleaseHub(h);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save the security log of the HUB
|
// Save the security log of the HUB
|
||||||
void WriteHubLog(HUB *h, wchar_t *str)
|
void WriteHubLog(HUB *h, wchar_t *str)
|
||||||
{
|
{
|
||||||
@ -989,57 +911,6 @@ void WriteServerLog(CEDAR *c, wchar_t *str)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write a multi-line log
|
|
||||||
void WriteMultiLineLog(LOG *g, BUF *b)
|
|
||||||
{
|
|
||||||
// Validate arguments
|
|
||||||
if (g == NULL || b == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
SeekBuf(b, 0, 0);
|
|
||||||
|
|
||||||
while (true)
|
|
||||||
{
|
|
||||||
char *s = CfgReadNextLine(b);
|
|
||||||
if (s == NULL)
|
|
||||||
{
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (IsEmptyStr(s) == false)
|
|
||||||
{
|
|
||||||
InsertStringRecord(g, s);
|
|
||||||
}
|
|
||||||
|
|
||||||
Free(s);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Take the security log (variable-length argument) *abolished
|
|
||||||
void SecLog(HUB *h, char *fmt, ...)
|
|
||||||
{
|
|
||||||
char buf[MAX_SIZE * 2];
|
|
||||||
va_list args;
|
|
||||||
// Validate arguments
|
|
||||||
if (fmt == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (h->LogSetting.SaveSecurityLog == false)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
va_start(args, fmt);
|
|
||||||
FormatArgs(buf, sizeof(buf), fmt, args);
|
|
||||||
|
|
||||||
WriteSecurityLog(h, buf);
|
|
||||||
va_end(args);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Take a security log
|
// Take a security log
|
||||||
void WriteSecurityLog(HUB *h, char *str)
|
void WriteSecurityLog(HUB *h, char *str)
|
||||||
{
|
{
|
||||||
@ -2272,46 +2143,6 @@ void ReplaceForCsv(char *str)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the directory name of the log
|
|
||||||
void SetLogDirName(LOG *g, char *dir)
|
|
||||||
{
|
|
||||||
// Validate arguments
|
|
||||||
if (g == NULL || dir == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
LockLog(g);
|
|
||||||
{
|
|
||||||
if (g->DirName != NULL)
|
|
||||||
{
|
|
||||||
Free(g->DirName);
|
|
||||||
}
|
|
||||||
g->DirName = CopyStr(dir);
|
|
||||||
}
|
|
||||||
UnlockLog(g);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the name of the log
|
|
||||||
void SetLogPrefix(LOG *g, char *prefix)
|
|
||||||
{
|
|
||||||
// Validate arguments
|
|
||||||
if (g == NULL || prefix == NULL)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
LockLog(g);
|
|
||||||
{
|
|
||||||
if (g->DirName != NULL)
|
|
||||||
{
|
|
||||||
Free(g->Prefix);
|
|
||||||
}
|
|
||||||
g->DirName = CopyStr(prefix);
|
|
||||||
}
|
|
||||||
UnlockLog(g);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the switch type of log
|
// Set the switch type of log
|
||||||
void SetLogSwitchType(LOG *g, UINT switch_type)
|
void SetLogSwitchType(LOG *g, UINT switch_type)
|
||||||
{
|
{
|
||||||
|
@ -223,8 +223,6 @@ char *StringRecordParseProc(RECORD *rec);
|
|||||||
bool MakeLogFileName(LOG *g, char *name, UINT size, char *dir, char *prefix, UINT64 tick, UINT switch_type, UINT num, char *old_datestr);
|
bool MakeLogFileName(LOG *g, char *name, UINT size, char *dir, char *prefix, UINT64 tick, UINT switch_type, UINT num, char *old_datestr);
|
||||||
void MakeLogFileNameStringFromTick(LOG *g, char *str, UINT size, UINT64 tick, UINT switch_type);
|
void MakeLogFileNameStringFromTick(LOG *g, char *str, UINT size, UINT64 tick, UINT switch_type);
|
||||||
void WriteRecordToBuffer(BUF *b, RECORD *r);
|
void WriteRecordToBuffer(BUF *b, RECORD *r);
|
||||||
void SetLogDirName(LOG *g, char *dir);
|
|
||||||
void SetLogPrefix(LOG *g, char *prefix);
|
|
||||||
void SetLogSwitchType(LOG *g, UINT switch_type);
|
void SetLogSwitchType(LOG *g, UINT switch_type);
|
||||||
bool PacketLog(HUB *hub, SESSION *src_session, SESSION *dest_session, PKT *packet, UINT64 now);
|
bool PacketLog(HUB *hub, SESSION *src_session, SESSION *dest_session, PKT *packet, UINT64 now);
|
||||||
char *PacketLogParseProc(RECORD *rec);
|
char *PacketLogParseProc(RECORD *rec);
|
||||||
@ -235,16 +233,12 @@ void ReplaceForCsv(char *str);
|
|||||||
char *PortStr(CEDAR *cedar, UINT port, bool udp);
|
char *PortStr(CEDAR *cedar, UINT port, bool udp);
|
||||||
char *TcpFlagStr(UCHAR flag);
|
char *TcpFlagStr(UCHAR flag);
|
||||||
void WriteSecurityLog(HUB *h, char *str);
|
void WriteSecurityLog(HUB *h, char *str);
|
||||||
void SecLog(HUB *h, char *fmt, ...);
|
|
||||||
void SiSetDefaultLogSetting(HUB_LOG *g);
|
void SiSetDefaultLogSetting(HUB_LOG *g);
|
||||||
void DebugLog(CEDAR *c, char *fmt, ...);
|
void DebugLog(CEDAR *c, char *fmt, ...);
|
||||||
void HubLog(HUB *h, wchar_t *fmt, ...);
|
|
||||||
void ServerLog(CEDAR *c, wchar_t *fmt, ...);
|
|
||||||
void SLog(CEDAR *c, char *name, ...);
|
void SLog(CEDAR *c, char *name, ...);
|
||||||
void WriteHubLog(HUB *h, wchar_t *str);
|
void WriteHubLog(HUB *h, wchar_t *str);
|
||||||
void HLog(HUB *h, char *name, ...);
|
void HLog(HUB *h, char *name, ...);
|
||||||
void NLog(VH *v, char *name, ...);
|
void NLog(VH *v, char *name, ...);
|
||||||
void IPCLog(IPC *ipc, char *name, ...);
|
|
||||||
void PPPLog(PPP_SESSION *p, char *name, ...);
|
void PPPLog(PPP_SESSION *p, char *name, ...);
|
||||||
void IPsecLog(IKE_SERVER *ike, IKE_CLIENT *c, IKE_SA *ike_sa, IPSECSA *ipsec_sa, char *name, ...);
|
void IPsecLog(IKE_SERVER *ike, IKE_CLIENT *c, IKE_SA *ike_sa, IPSECSA *ipsec_sa, char *name, ...);
|
||||||
void EtherIPLog(ETHERIP_SERVER *s, char *name, ...);
|
void EtherIPLog(ETHERIP_SERVER *s, char *name, ...);
|
||||||
@ -261,13 +255,11 @@ bool CheckEraserDiskFreeSpace(ERASER *e);
|
|||||||
int CompareEraseFile(void *p1, void *p2);
|
int CompareEraseFile(void *p1, void *p2);
|
||||||
LIST *GenerateEraseFileList(ERASER *e);
|
LIST *GenerateEraseFileList(ERASER *e);
|
||||||
void FreeEraseFileList(LIST *o);
|
void FreeEraseFileList(LIST *o);
|
||||||
void PrintEraseFileList(LIST *o);
|
|
||||||
void EnumEraseFile(LIST *o, char *dirname);
|
void EnumEraseFile(LIST *o, char *dirname);
|
||||||
SLOG *NewSysLog(char *hostname, UINT port, IP *ip);
|
SLOG *NewSysLog(char *hostname, UINT port, IP *ip);
|
||||||
void SetSysLog(SLOG *g, char *hostname, UINT port);
|
void SetSysLog(SLOG *g, char *hostname, UINT port);
|
||||||
void FreeSysLog(SLOG *g);
|
void FreeSysLog(SLOG *g);
|
||||||
void SendSysLog(SLOG *g, wchar_t *str);
|
void SendSysLog(SLOG *g, wchar_t *str);
|
||||||
void WriteMultiLineLog(LOG *g, BUF *b);
|
|
||||||
char *BuildHttpLogStr(HTTPLOG *h);
|
char *BuildHttpLogStr(HTTPLOG *h);
|
||||||
void MakeSafeLogStr(char *str);
|
void MakeSafeLogStr(char *str);
|
||||||
void AddLogBufToStr(BUF *b, char *name, char *value);
|
void AddLogBufToStr(BUF *b, char *name, char *value);
|
||||||
|
Loading…
Reference in New Issue
Block a user