source: trunk/FACT++/src/dns.c@ 13765

Last change on this file since 13765 was 11010, checked in by tbretz, 13 years ago
Set '192.168.0.255' as default address because it is a broadcast address.
File size: 263 bytes
Line 
1#include <stdlib.h>
2
3extern const char *GetLocalIp();
4
5int local_main(int argc, char **argv);
6
7int main(int argc, char **argv)
8{
9 setenv("DIM_HOST_NODE", GetLocalIp(), 1);
10
11 return local_main(argc, argv);
12}
13
14#define main local_main
15#include "dim/src/dns.c"
Note: See TracBrowser for help on using the repository browser.