File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / mtr / ui / display.h
Revision 1.1.1.3 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Sep 27 11:18:58 2023 UTC (18 months, 1 week ago) by misho
Branches: mtr, MAIN
CVS tags: v0_95, HEAD
Version 0.95

    1: /*
    2:     mtr  --  a network diagnostic tool
    3:     Copyright (C) 1997,1998  Matt Kimball
    4: 
    5:     This program is free software; you can redistribute it and/or modify
    6:     it under the terms of the GNU General Public License version 2 as
    7:     published by the Free Software Foundation.
    8: 
    9:     This program is distributed in the hope that it will be useful,
   10:     but WITHOUT ANY WARRANTY; without even the implied warranty of
   11:     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   12:     GNU General Public License for more details.
   13: 
   14:     You should have received a copy of the GNU General Public License along
   15:     with this program; if not, write to the Free Software Foundation, Inc.,
   16:     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
   17: */
   18: 
   19: #include <netinet/in.h>
   20: 
   21: /* Don't put a trailing comma in enumeration lists. Some compilers
   22:    (notably the one on Irix 5.2) do not like that. */
   23: enum { ActionNone, ActionQuit, ActionReset, ActionDisplay,
   24:     ActionClear, ActionPause, ActionResume, ActionMPLS, ActionDNS,
   25: #ifdef HAVE_IPINFO
   26:     ActionII, ActionAS,
   27: #endif
   28:     ActionScrollDown, ActionScrollUp
   29: };
   30: 
   31: enum {
   32:     DisplayReport,
   33: #ifdef HAVE_CURSES
   34:     DisplayCurses,
   35: #endif
   36: #ifdef HAVE_GTK
   37:     DisplayGTK,
   38: #endif
   39:     DisplaySplit,
   40:     DisplayRaw,
   41:     DisplayXML,
   42:     DisplayCSV,
   43:     DisplayTXT,
   44: #ifdef HAVE_JANSSON
   45:     DisplayJSON,
   46: #endif
   47: };
   48: 
   49: enum {
   50:     DisplayModeDefault,
   51:     DisplayModeBlockmap,
   52:     DisplayModeBlockmapScale,
   53:     DisplayModeMAX              /* this must be the last DisplayMode entry */
   54: };
   55: 
   56: /*  Prototypes for display.c  */
   57: extern void display_detect(
   58:     struct mtr_ctl *ctl,
   59:     int *argc,
   60:     char ***argv);
   61: extern void display_open(
   62:     struct mtr_ctl *ctl);
   63: extern void display_close(
   64:     struct mtr_ctl *ctl);
   65: extern void display_redraw(
   66:     struct mtr_ctl *ctl);
   67: extern void display_rawxmit(
   68:     struct mtr_ctl *ctl,
   69:     int hostnum,
   70:     int seq);
   71: extern void display_rawping(
   72:     struct mtr_ctl *ctl,
   73:     int hostnum,
   74:     int msec,
   75:     int seq);
   76: extern void display_rawhost(
   77:     struct mtr_ctl *ctl,
   78:     int hostnum,
   79:     ip_t *ip_addr,
   80:     struct mplslen *mpls);
   81: extern int display_keyaction(
   82:     struct mtr_ctl *ctl);
   83: extern void display_loop(
   84:     struct mtr_ctl *ctl);
   85: extern void display_clear(
   86:     struct mtr_ctl *ctl);
   87: extern char *host_error_to_string(
   88:     int err);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>