From f4e683fc6bd6ac76f9979f49d737588b6ddf16b0 Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周六, 14 11月 2020 22:13:13 +0800 Subject: [PATCH] windows smbios --- src/library/os/linux/network.cpp | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/library/os/linux/network.cpp b/src/library/os/linux/network.cpp index 5873a2b..8720c50 100644 --- a/src/library/os/linux/network.cpp +++ b/src/library/os/linux/network.cpp @@ -64,7 +64,6 @@ // if_name_position = ifname_position(ifnames, ifa->ifa_name, if_num); // interface name not seen en advance OsAdapterInfo *currentAdapter; - // FIXME not working if (adapterByName.find(if_name) == adapterByName.end()) { OsAdapterInfo newAdapter; memset(&newAdapter, 0, sizeof(OsAdapterInfo)); @@ -76,7 +75,7 @@ family = ifa->ifa_addr->sa_family; /* Display interface name and family (including symbolic form of the latter for the common families) */ -#ifdef _DEBUG +#ifndef NDEBUG printf("%-8s %s (%d)\n", ifa->ifa_name, (family == AF_PACKET) ? "AF_PACKET" : (family == AF_INET) ? "AF_INET" : (family == AF_INET6) ? "AF_INET6" : "???", @@ -97,11 +96,11 @@ int i; for (i = 0; i < 6; i++) { currentAdapter->mac_address[i] = s1->sll_addr[i]; -#ifdef _DEBUG +#ifndef NDEBUG printf("%02x:", s1->sll_addr[i]); #endif } -#ifdef _DEBUG +#ifndef NDEBUG printf("\t %s\n", ifa->ifa_name); #endif } -- Gitblit v1.9.1