freebsd-dev/contrib/ntp/sntp/main.h
Cy Schubert 2b15cb3d09 MFV ntp 4.2.8p1 (r258945, r275970, r276091, r276092, r276093, r278284)
Thanks to roberto for providing pointers to wedge this into HEAD.

Approved by:	roberto
2015-03-30 13:30:15 +00:00

32 lines
875 B
C

#ifndef MAIN_H
#define MAIN_H
#include <stdio.h>
#include <isc/result.h>
#include <isc/net.h>
#include <ntp.h>
#include <ntp_unixtime.h>
#include <ntp_stdlib.h>
#include <ntp_intres.h>
#include <ntp_debug.h>
#include <timevalops.h>
#include <sntp-opts.h>
#include "crypto.h"
void set_li_vn_mode(struct pkt *spkt, char leap, char version, char mode);
extern int sntp_main(int argc, char **argv, const char *);
int generate_pkt(struct pkt *x_pkt, const struct timeval *tv_xmt,
int key_id, struct key *pkt_key);
int handle_pkt(int rpktl, struct pkt *rpkt, sockaddr_u *host,
const char *hostname);
void offset_calculation(struct pkt *rpkt, int rpktl,
struct timeval *tv_dst, double *offset,
double *precision, double *root_dispersion);
int on_wire(struct addrinfo *host, struct addrinfo *bcastaddr);
int set_time(double offset);
#endif /* MAIN_H */