|
|
| version 1.1, 2013/07/21 23:43:41 | version 1.1.1.2, 2016/11/01 09:33:48 |
|---|---|
| Line 16 | Line 16 |
| Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| */ | */ |
| #include <config.h> | #include "config.h" |
| #include <stdio.h> | #include <stdio.h> |
| #include <stdlib.h> | #include <stdlib.h> |
| #include <sys/types.h> | #include <sys/types.h> |
| Line 29 | Line 30 |
| #include "select.h" | #include "select.h" |
| #include "raw.h" | #include "raw.h" |
| #include "dns.h" | #include "dns.h" |
| #ifndef NO_IPINFO | #include "asn.h" |
| #include <asn.h> | |
| #endif | |
| extern int DisplayMode; | extern int DisplayMode; |
| Line 97 void display_open(void) | Line 96 void display_open(void) |
| break; | break; |
| case DisplayCurses: | case DisplayCurses: |
| mtr_curses_open(); | mtr_curses_open(); |
| #ifndef NO_IPINFO | #ifdef IPINFO |
| if (ipinfo_no >= 0) | if (ipinfo_no >= 0) |
| asn_open(); | asn_open(); |
| #endif | #endif |
| Line 128 void display_close(time_t now) | Line 127 void display_close(time_t now) |
| csv_close(now); | csv_close(now); |
| break; | break; |
| case DisplayCurses: | case DisplayCurses: |
| #ifndef NO_IPINFO | #ifdef IPINFO |
| if (ipinfo_no >= 0) | if (ipinfo_no >= 0) |
| asn_close(); | asn_close(); |
| #endif | #endif |