98 lines
2.1 KiB
C
98 lines
2.1 KiB
C
#include <qse/si/nwif.h>
|
|
#include <qse/cmn/mbwc.h>
|
|
#include <qse/cmn/main.h>
|
|
#include <qse/cmn/mem.h>
|
|
#include <qse/cmn/str.h>
|
|
#include <qse/si/sio.h>
|
|
#include <qse/cmn/fmt.h>
|
|
|
|
#include <locale.h>
|
|
#if defined(_WIN32)
|
|
# include <windows.h>
|
|
#endif
|
|
|
|
static void print_nwifcfg (qse_nwifcfg_t* ptr)
|
|
{
|
|
qse_char_t tmp[128];
|
|
|
|
qse_printf (QSE_T("[%s] ifindex=[%u] "), ptr->name, ptr->index);
|
|
|
|
qse_nwadtostr (&ptr->addr, tmp, QSE_COUNTOF(tmp), QSE_NWADTOSTR_ALL);
|
|
qse_printf (QSE_T("addr=[%s] "), tmp);
|
|
qse_nwadtostr (&ptr->mask, tmp, QSE_COUNTOF(tmp), QSE_NWADTOSTR_ALL);
|
|
qse_printf (QSE_T("mask=[%s] "), tmp);
|
|
|
|
if (ptr->flags & QSE_NWIFCFG_BCAST)
|
|
{
|
|
qse_nwadtostr (&ptr->bcast, tmp, QSE_COUNTOF(tmp), QSE_NWADTOSTR_ALL);
|
|
qse_printf (QSE_T("bcast=[%s] "), tmp);
|
|
}
|
|
|
|
qse_printf (QSE_T("mtu=[%d] "), (int)ptr->mtu);
|
|
qse_printf (QSE_T("\n"));
|
|
}
|
|
|
|
static int test_main (int argc, qse_char_t* argv[])
|
|
{
|
|
qse_char_t name[100];
|
|
unsigned int index;
|
|
unsigned int i;
|
|
|
|
for (i = 1; ;i++)
|
|
{
|
|
if (qse_nwifindextostr (i, name, QSE_COUNTOF(name)) <= -1)
|
|
{
|
|
qse_printf (QSE_T("ifindex %d failed\n"), i);
|
|
break;
|
|
}
|
|
|
|
if (qse_nwifstrtoindex (name, &index) <= -1)
|
|
{
|
|
qse_printf (QSE_T("ifname %s failed\n"), name);
|
|
break;
|
|
}
|
|
|
|
if (i != index)
|
|
{
|
|
qse_printf (QSE_T("index mismatch %u %u %s\n"), i, index, name);
|
|
break;
|
|
}
|
|
|
|
qse_printf (QSE_T("OK %u %s\n"), index, name);
|
|
}
|
|
|
|
qse_printf (QSE_T("================================================\n"));
|
|
return 0;
|
|
}
|
|
|
|
int qse_main (int argc, qse_achar_t* argv[])
|
|
{
|
|
int ret;
|
|
|
|
#if defined(_WIN32)
|
|
char locale[100];
|
|
UINT codepage = GetConsoleOutputCP();
|
|
if (codepage == CP_UTF8)
|
|
{
|
|
/*SetConsoleOutputCP (CP_UTF8);*/
|
|
qse_setdflcmgrbyid (QSE_CMGR_UTF8);
|
|
}
|
|
else
|
|
{
|
|
qse_fmtuintmaxtombs (locale, QSE_COUNTOF(locale),
|
|
codepage, 10, -1, QSE_MT('\0'), QSE_MT("."));
|
|
setlocale (LC_ALL, locale);
|
|
/*qse_setdflcmgrbyid (QSE_CMGR_SLMB);*/
|
|
}
|
|
#else
|
|
setlocale (LC_ALL, "");
|
|
/*qse_setdflcmgrbyid (QSE_CMGR_SLMB);*/
|
|
#endif
|
|
qse_open_stdsios ();
|
|
ret = qse_run_main (argc, argv, test_main);
|
|
qse_close_stdsios ();
|
|
|
|
return ret;
|
|
}
|
|
|