Deleted Added
sdiff udiff text old ( 54359 ) new ( 132451 )
full compact
1/*
2 * ntpdc.h - definitions of interest to ntpdc
3 */
4#include "ntp_fp.h"
5#include "ntp.h"
6#include "ntp_request.h"
7#include "ntp_string.h"
8#include "ntp_malloc.h"

--- 8 unchanged lines hidden (view full) ---

17 */
18#define OPT 0x80 /* this argument is optional, or'd with type */
19
20#define NO 0x0
21#define NTP_STR 0x1 /* string argument */
22#define UINT 0x2 /* unsigned integer */
23#define INT 0x3 /* signed integer */
24#define ADD 0x4 /* IP network address */
25#define IP_VERSION 0x5 /* IP version */
26
27/*
28 * Arguments are returned in a union
29 */
30typedef union {
31 char *string;
32 long ival;
33 u_long uval;
34 struct sockaddr_storage netnum;
35} arg_v;
36
37/*
38 * Structure for passing parsed command line
39 */
40struct parse {
41 char *keyword;
42 arg_v argval[MAXARGS];

--- 8 unchanged lines hidden (view full) ---

51struct xcmd {
52 const char *keyword; /* command key word */
53 void (*handler) P((struct parse *, FILE *)); /* command handler */
54 u_char arg[MAXARGS]; /* descriptors for arguments */
55 const char *desc[MAXARGS]; /* descriptions for arguments */
56 const char *comment;
57};
58
59extern int impl_ver;
60extern int showhostnames;
61extern int s_port;
62
63extern int doquery P((int, int, int, int, int, char *, int *, int *, char **, int, int));
64extern char * nntohost P((struct sockaddr_storage *));