1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/*
mtr -- a network diagnostic tool
Copyright (C) 1997,1998 Matt Kimball
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* Prototypes for functions in net.c */
int net_preopen();
int net_open(int address);
void net_reopen(int address);
int net_set_interfaceaddress (char *InterfaceAddress);
void net_reset();
void net_close();
int net_waitfd();
void net_process_return();
int net_max(void);
int net_min(void);
int net_last(int at);
int net_addr(int at);
int net_loss(int at);
int net_drop(int at);
int net_last(int at);
int net_best(int at);
int net_worst(int at);
int net_avg(int at);
int net_gmean(int at);
int net_stdev(int at);
int net_jitter(int at);
int net_jworst(int at);
int net_javg(int at);
int net_jinta(int at);
int net_addrs(int at, int i);
struct in_addr *net_localaddr(void);
int net_send_batch();
void net_end_transit();
int calc_deltatime (float WaitTime);
/* Added by Brian Casey, December 1997 bcasey@imagiware.com*/
int net_returned(int at);
int net_xmit(int at);
int net_transit(int at);
int net_up(int at);
#define SAVED_PINGS 200
int* net_saved_pings(int at);
void net_save_xmit(int at);
void net_save_return(int at, int seq, int ms);
int net_duplicate(int at, int seq);
#define MAXPATH 8
#define MaxHost 256
#define MaxSequence 65536
#define MAXPACKET 4470 /* largest test ICMP packet size */
#define MINPACKET 28 /* 20 bytes IP header and 8 bytes ICMP */
/* stuff used by display such as report, curses... --Min */
#define MAXFLD 20 /* max stats fields to display */
#if defined (__STDC__) && __STDC__
#define CONST const
#else
#define CONST /* */
#endif
/* XXX This doesn't really belong in this header file, but as the
right c-files include it, it will have to do for now. -- REW */
/* dynamic field drawing */
struct fields {
CONST unsigned char key;
CONST char *descr;
CONST char *title;
CONST char *format;
int length;
int (*net_xxx)();
};
extern struct fields data_fields[MAXFLD];
/* keys: the value in the array is the index number in data_fields[] */
extern int fld_index[];
extern unsigned char fld_active[];
extern char available_options[];
|