zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
showinterfaces.c
Go to the documentation of this file.
1 /*
2  showinterfaces: a simple test program to show the network interfaces
3  Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "SDL_net.h"
22 
23 #define MAX_ADDRESSES 10
24 
25 int main(int argc, char *argv[])
26 {
27  IPaddress addresses[MAX_ADDRESSES];
28  int i, count;
29 
30  count = SDLNet_GetLocalAddresses(addresses, MAX_ADDRESSES);
31  SDL_Log("Found %d local addresses", count);
32  for ( i = 0; i < count; ++i ) {
33  SDL_Log("%d: %d.%d.%d.%d - %s", i+1,
34  (addresses[i].host >> 0) & 0xFF,
35  (addresses[i].host >> 8) & 0xFF,
36  (addresses[i].host >> 16) & 0xFF,
37  (addresses[i].host >> 24) & 0xFF,
38  SDLNet_ResolveIP(&addresses[i]));
39  }
40  return 0;
41 }
int main(int argc, char **argv)
Definition: bootstrap.cpp:102
#define MAX_ADDRESSES
GLint GLsizei count
Definition: gl2ext.h:1011
DECLSPEC const char *SDLCALL SDLNet_ResolveIP(const IPaddress *ip)
Definition: SDLnet.c:173
DECLSPEC int SDLCALL SDLNet_GetLocalAddresses(IPaddress *addresses, int maxcount)
Definition: SDLnet.c:187
DECLSPEC void SDLCALL SDL_Log(const char *fmt,...)
Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO.
Definition: SDL_log.c:173
int i
Definition: pngrutil.c:1377