Update copyright dates
[adns] / regress / harness.h.m4
CommitLineData
bb7ba677 1m4_dnl harness.h.m4
2m4_dnl (part of complex test harness, not of the library)
3m4_dnl - function and other declarations
4
ae8cc977 5m4_dnl This file is part of adns, which is
baa953c9 6m4_dnl Copyright (C) 1997-2000,2003,2006,2014-2016 Ian Jackson
17cd4f48 7m4_dnl Copyright (C) 2014 Mark Wooding
ae8cc977 8m4_dnl Copyright (C) 1999-2000,2003,2006 Tony Finch
9m4_dnl Copyright (C) 1991 Massachusetts Institute of Technology
10m4_dnl (See the file INSTALL for full details.)
bb7ba677 11m4_dnl
12m4_dnl This program is free software; you can redistribute it and/or modify
13m4_dnl it under the terms of the GNU General Public License as published by
7f8bbe29 14m4_dnl the Free Software Foundation; either version 3, or (at your option)
bb7ba677 15m4_dnl any later version.
16m4_dnl
17m4_dnl This program is distributed in the hope that it will be useful,
18m4_dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19m4_dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20m4_dnl GNU General Public License for more details.
21m4_dnl
22m4_dnl You should have received a copy of the GNU General Public License
8c09a4c6 23m4_dnl along with this program; if not, write to the Free Software Foundation.
bb7ba677 24
25m4_include(hmacros.i4)
26
27#ifndef HARNESS_H_INCLUDED
28#define HARNESS_H_INCLUDED
29
bb7ba677 30#include "internal.h"
0ebff22d 31#include "hsyscalls.h"
914a5ff5 32
bb7ba677 33/* There is a Q function (Q for Question) for each such syscall;
34 * it constructs a string representing the call, and calls Q_str
35 * on it, or constructs it in vb and calls Q_vb;
36 */
37
38hm_create_proto_q
39m4_define(`hm_syscall', `void Q$1(hm_args_massage($3,void));')
0ebff22d 40m4_define(`hm_specsyscall', `')
bb7ba677 41m4_include(`hsyscalls.i4')
42
43void Q_vb(void);
44
914a5ff5 45extern void Tshutdown(void);
46
bb7ba677 47/* General help functions */
48
49void Tfailed(const char *why);
50void Toutputerr(void);
51void Tnomem(void);
52void Tfsyscallr(const char *fmt, ...) PRINTFFORMAT(1,2);
87dd6345 53void Tensurerecordfile(void);
bb7ba677 54void Tmust(const char *call, const char *arg, int cond);
55
56void Tvbf(const char *fmt, ...) PRINTFFORMAT(1,2);
57void Tvbvf(const char *fmt, va_list al);
58void Tvbfdset(int max, const fd_set *set);
8b1171e6 59void Tvbpollfds(const struct pollfd *fds, int nfds);
bb7ba677 60void Tvbaddr(const struct sockaddr *addr, int addrlen);
61void Tvbbytes(const void *buf, int len);
62void Tvberrno(int e);
63void Tvba(const char *str);
64
65/* Shared globals */
66
67extern vbuf vb;
98b6d5b4 68extern struct timeval currenttime;
bb7ba677 69extern const struct Terrno { const char *n; int v; } Terrnos[];
e7308d26
IJ
70
71/* Special cases */
bb7ba677 72
e7308d26
IJ
73void Texit(int rv) NONRETURNING;
74
bb7ba677 75#endif