diff options
Diffstat (limited to 'sntp/utilities.h')
-rw-r--r-- | sntp/utilities.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sntp/utilities.h b/sntp/utilities.h new file mode 100644 index 0000000000000..a122f868d9619 --- /dev/null +++ b/sntp/utilities.h @@ -0,0 +1,25 @@ +#ifndef UTILITIES_H +#define UTILITIES_H + +#include <math.h> +#include <stdio.h> +#include <stdlib.h> +#include <ntp_stdlib.h> +#include <ntp_fp.h> +#include <ntp.h> + +#define HLINE "--------------------------------------------------------------------------------\n" +#define PHLINE fprintf(output, HLINE); +#define STDLINE printf(HLINE); + + +void pkt_output (struct pkt *dpkg, int pkt_length, FILE *output); +void l_fp_output (l_fp *ts, FILE *output); +void l_fp_output_bin (l_fp *ts, FILE *output); +void l_fp_output_dec (l_fp *ts, FILE *output); + +char *addrinfo_to_str (struct addrinfo *addr); +char *ss_to_str (sockaddr_u *saddr); +char *tv_to_str (const struct timeval *tv); + +#endif |