mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Merge PR #799: Cedar, Mayaqua: remove unused functions and redundant checks
This commit is contained in:
commit
ac16d0e882
@ -5578,8 +5578,6 @@ UINT StAddAccess(ADMIN *a, RPC_ADD_ACCESS *t)
|
||||
t->Access.Jitter = t->Access.Delay = t->Access.Loss = 0;
|
||||
}
|
||||
|
||||
if (no_include)
|
||||
{
|
||||
if (no_include)
|
||||
{
|
||||
if (StartWith(t->Access.SrcUsername, ACCESS_LIST_INCLUDED_PREFIX) ||
|
||||
@ -5594,7 +5592,6 @@ UINT StAddAccess(ADMIN *a, RPC_ADD_ACCESS *t)
|
||||
ClearStr(t->Access.DestUsername, sizeof(t->Access.DestUsername));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
AddAccessList(h, &t->Access);
|
||||
|
||||
|
@ -18707,20 +18707,13 @@ LABEL_RESTART:
|
||||
recv_list = NewListFast(NULL);
|
||||
|
||||
if (u->PollMyIpAndPort)
|
||||
{
|
||||
// Create a thread to get a NAT-T IP address if necessary
|
||||
if (u->GetNatTIpThread == NULL)
|
||||
{
|
||||
// Create a thread to get a NAT-T IP address if necessary
|
||||
if (u->GetNatTIpThread == NULL)
|
||||
{
|
||||
char natt_hostname[MAX_SIZE];
|
||||
|
||||
RUDPGetRegisterHostNameByIP(natt_hostname, sizeof(natt_hostname), NULL);
|
||||
|
||||
u->GetNatTIpThread = NewQueryIpThread(natt_hostname, QUERYIPTHREAD_INTERVAL_LAST_OK, QUERYIPTHREAD_INTERVAL_LAST_NG);
|
||||
}
|
||||
|
||||
GetQueryIpThreadResult(u->GetNatTIpThread, &nat_t_ip);
|
||||
}
|
||||
}
|
||||
|
@ -328,10 +328,6 @@ UINT OSThreadId()
|
||||
}
|
||||
|
||||
// Rename
|
||||
bool OSFileRename(char *old_name, char *new_name)
|
||||
{
|
||||
return os->FileRename(old_name, new_name);
|
||||
}
|
||||
bool OSFileRenameW(wchar_t *old_name, wchar_t *new_name)
|
||||
{
|
||||
return os->FileRenameW(old_name, new_name);
|
||||
@ -350,50 +346,30 @@ bool OSFileSeek(void *pData, UINT mode, int offset)
|
||||
}
|
||||
|
||||
// Delete the file
|
||||
bool OSFileDelete(char *name)
|
||||
{
|
||||
return os->FileDelete(name);
|
||||
}
|
||||
bool OSFileDeleteW(wchar_t *name)
|
||||
{
|
||||
return os->FileDeleteW(name);
|
||||
}
|
||||
|
||||
// Create a directory
|
||||
bool OSMakeDir(char *name)
|
||||
{
|
||||
return os->MakeDir(name);
|
||||
}
|
||||
bool OSMakeDirW(wchar_t *name)
|
||||
{
|
||||
return os->MakeDirW(name);
|
||||
}
|
||||
|
||||
// Delete the directory
|
||||
bool OSDeleteDir(char *name)
|
||||
{
|
||||
return os->DeleteDir(name);
|
||||
}
|
||||
bool OSDeleteDirW(wchar_t *name)
|
||||
{
|
||||
return os->DeleteDirW(name);
|
||||
}
|
||||
|
||||
// Open the file
|
||||
void *OSFileOpen(char *name, bool write_mode, bool read_lock)
|
||||
{
|
||||
return os->FileOpen(name, write_mode, read_lock);
|
||||
}
|
||||
void *OSFileOpenW(wchar_t *name, bool write_mode, bool read_lock)
|
||||
{
|
||||
return os->FileOpenW(name, write_mode, read_lock);
|
||||
}
|
||||
|
||||
// Create a file
|
||||
void *OSFileCreate(char *name)
|
||||
{
|
||||
return os->FileCreate(name);
|
||||
}
|
||||
void *OSFileCreateW(wchar_t *name)
|
||||
{
|
||||
return os->FileCreateW(name);
|
||||
@ -483,18 +459,6 @@ void OSGetSystemTime(SYSTEMTIME *system_time)
|
||||
os->GetSystemTime(system_time);
|
||||
}
|
||||
|
||||
// 32bit increment
|
||||
void OSInc32(UINT *value)
|
||||
{
|
||||
os->Inc32(value);
|
||||
}
|
||||
|
||||
// 32bit decrement
|
||||
void OSDec32(UINT *value)
|
||||
{
|
||||
os->Dec32(value);
|
||||
}
|
||||
|
||||
// Sleep the thread
|
||||
void OSSleep(UINT time)
|
||||
{
|
||||
@ -537,12 +501,6 @@ void OSSetEvent(EVENT *event)
|
||||
os->SetEvent(event);
|
||||
}
|
||||
|
||||
// Reset event
|
||||
void OSResetEvent(EVENT *event)
|
||||
{
|
||||
os->ResetEvent(event);
|
||||
}
|
||||
|
||||
// Wait for event
|
||||
bool OSWaitEvent(EVENT *event, UINT timeout)
|
||||
{
|
||||
|
@ -124,8 +124,6 @@ void *OSMemoryReAlloc(void *addr, UINT size);
|
||||
void OSMemoryFree(void *addr);
|
||||
UINT OSGetTick();
|
||||
void OSGetSystemTime(SYSTEMTIME *system_time);
|
||||
void OSInc32(UINT *value);
|
||||
void OSDec32(UINT *value);
|
||||
void OSSleep(UINT time);
|
||||
LOCK *OSNewLock();
|
||||
bool OSLock(LOCK *lock);
|
||||
@ -133,15 +131,12 @@ void OSUnlock(LOCK *lock);
|
||||
void OSDeleteLock(LOCK *lock);
|
||||
void OSInitEvent(EVENT *event);
|
||||
void OSSetEvent(EVENT *event);
|
||||
void OSResetEvent(EVENT *event);
|
||||
bool OSWaitEvent(EVENT *event, UINT timeout);
|
||||
void OSFreeEvent(EVENT *event);
|
||||
bool OSWaitThread(THREAD *t);
|
||||
void OSFreeThread(THREAD *t);
|
||||
bool OSInitThread(THREAD *t);
|
||||
void *OSFileOpen(char *name, bool write_mode, bool read_lock);
|
||||
void *OSFileOpenW(wchar_t *name, bool write_mode, bool read_lock);
|
||||
void *OSFileCreate(char *name);
|
||||
void *OSFileCreateW(wchar_t *name);
|
||||
bool OSFileWrite(void *pData, void *buf, UINT size);
|
||||
bool OSFileRead(void *pData, void *buf, UINT size);
|
||||
@ -149,15 +144,11 @@ void OSFileClose(void *pData, bool no_flush);
|
||||
void OSFileFlush(void *pData);
|
||||
UINT64 OSFileSize(void *pData);
|
||||
bool OSFileSeek(void *pData, UINT mode, int offset);
|
||||
bool OSFileDelete(char *name);
|
||||
bool OSFileDeleteW(wchar_t *name);
|
||||
bool OSMakeDir(char *name);
|
||||
bool OSMakeDirW(wchar_t *name);
|
||||
bool OSDeleteDir(char *name);
|
||||
bool OSDeleteDirW(wchar_t *name);
|
||||
CALLSTACK_DATA *OSGetCallStack();
|
||||
bool OSGetCallStackSymbolInfo(CALLSTACK_DATA *s);
|
||||
bool OSFileRename(char *old_name, char *new_name);
|
||||
bool OSFileRenameW(wchar_t *old_name, wchar_t *new_name);
|
||||
UINT OSThreadId();
|
||||
bool OSRun(char *filename, char *arg, bool hide, bool wait);
|
||||
|
Loading…
Reference in New Issue
Block a user