SOL9 Sample: TcpStatistics |
/* * TcpStatistics.cpp * Copyright (c) 2015 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED. */ // SOL9 // 2009/09/04 #include <sol/net/TcpStatistics.h> void _tmain(int argc, TCHAR** argv) { try { TcpStatistics table; table.getTable(); table.display(); } catch (...) { printf("Exception\n"); } }