mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01:00
Silence several compiler warnings
This commit is contained in:
parent
10dfe39f5f
commit
5f8820d9d6
|
@ -21,7 +21,7 @@ BOOL I2PService::isService()
|
||||||
HWINSTA hWinStation = GetProcessWindowStation();
|
HWINSTA hWinStation = GetProcessWindowStation();
|
||||||
if (hWinStation != NULL)
|
if (hWinStation != NULL)
|
||||||
{
|
{
|
||||||
USEROBJECTFLAGS uof = { 0 };
|
USEROBJECTFLAGS uof = { FALSE, FALSE, 0 };
|
||||||
if (GetUserObjectInformation(hWinStation, UOI_FLAGS, &uof, sizeof(USEROBJECTFLAGS), NULL) && ((uof.dwFlags & WSF_VISIBLE) == 0))
|
if (GetUserObjectInformation(hWinStation, UOI_FLAGS, &uof, sizeof(USEROBJECTFLAGS), NULL) && ((uof.dwFlags & WSF_VISIBLE) == 0))
|
||||||
{
|
{
|
||||||
bIsService = TRUE;
|
bIsService = TRUE;
|
||||||
|
|
|
@ -200,13 +200,11 @@ namespace net
|
||||||
pCurrAddresses = pAddresses;
|
pCurrAddresses = pAddresses;
|
||||||
while(pCurrAddresses)
|
while(pCurrAddresses)
|
||||||
{
|
{
|
||||||
PIP_ADAPTER_UNICAST_ADDRESS firstUnicastAddress = pCurrAddresses->FirstUnicastAddress;
|
|
||||||
|
|
||||||
pUnicast = pCurrAddresses->FirstUnicastAddress;
|
pUnicast = pCurrAddresses->FirstUnicastAddress;
|
||||||
if(pUnicast == nullptr)
|
if(pUnicast == nullptr)
|
||||||
LogPrint(eLogError, "NetIface: GetMTU: Not a unicast IPv4 address, this is not supported");
|
LogPrint(eLogError, "NetIface: GetMTU: Not a unicast IPv4 address, this is not supported");
|
||||||
|
|
||||||
for(int i = 0; pUnicast != nullptr; ++i)
|
while(pUnicast != nullptr)
|
||||||
{
|
{
|
||||||
LPSOCKADDR lpAddr = pUnicast->Address.lpSockaddr;
|
LPSOCKADDR lpAddr = pUnicast->Address.lpSockaddr;
|
||||||
sockaddr_in* localInterfaceAddress = (sockaddr_in*) lpAddr;
|
sockaddr_in* localInterfaceAddress = (sockaddr_in*) lpAddr;
|
||||||
|
@ -264,12 +262,11 @@ namespace net
|
||||||
pCurrAddresses = pAddresses;
|
pCurrAddresses = pAddresses;
|
||||||
while (pCurrAddresses)
|
while (pCurrAddresses)
|
||||||
{
|
{
|
||||||
PIP_ADAPTER_UNICAST_ADDRESS firstUnicastAddress = pCurrAddresses->FirstUnicastAddress;
|
|
||||||
pUnicast = pCurrAddresses->FirstUnicastAddress;
|
pUnicast = pCurrAddresses->FirstUnicastAddress;
|
||||||
if (pUnicast == nullptr)
|
if (pUnicast == nullptr)
|
||||||
LogPrint(eLogError, "NetIface: GetMTU: Not a unicast IPv6 address, this is not supported");
|
LogPrint(eLogError, "NetIface: GetMTU: Not a unicast IPv6 address, this is not supported");
|
||||||
|
|
||||||
for (int i = 0; pUnicast != nullptr; ++i)
|
while (pUnicast != nullptr)
|
||||||
{
|
{
|
||||||
LPSOCKADDR lpAddr = pUnicast->Address.lpSockaddr;
|
LPSOCKADDR lpAddr = pUnicast->Address.lpSockaddr;
|
||||||
sockaddr_in6 *localInterfaceAddress = (sockaddr_in6*) lpAddr;
|
sockaddr_in6 *localInterfaceAddress = (sockaddr_in6*) lpAddr;
|
||||||
|
@ -533,10 +530,9 @@ namespace net
|
||||||
pCurrAddresses = pAddresses;
|
pCurrAddresses = pAddresses;
|
||||||
while(pCurrAddresses)
|
while(pCurrAddresses)
|
||||||
{
|
{
|
||||||
PIP_ADAPTER_UNICAST_ADDRESS firstUnicastAddress = pCurrAddresses->FirstUnicastAddress;
|
|
||||||
pUnicast = pCurrAddresses->FirstUnicastAddress;
|
pUnicast = pCurrAddresses->FirstUnicastAddress;
|
||||||
|
|
||||||
for(int i = 0; pUnicast != nullptr; ++i)
|
while(pUnicast != nullptr)
|
||||||
{
|
{
|
||||||
LPSOCKADDR lpAddr = pUnicast->Address.lpSockaddr;
|
LPSOCKADDR lpAddr = pUnicast->Address.lpSockaddr;
|
||||||
sockaddr_in6 *localInterfaceAddress = (sockaddr_in6*) lpAddr;
|
sockaddr_in6 *localInterfaceAddress = (sockaddr_in6*) lpAddr;
|
||||||
|
|
Loading…
Reference in a new issue