From a314d7a047382674ed27f1db62a698b8c4a470aa Mon Sep 17 00:00:00 2001 From: "David C. Jedlinsky" Date: Tue, 16 Jun 1987 15:15:10 +0000 Subject: Initial revision --- zhm/queue.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 zhm/queue.c (limited to 'zhm') diff --git a/zhm/queue.c b/zhm/queue.c new file mode 100644 index 0000000..26c8e16 --- /dev/null +++ b/zhm/queue.c @@ -0,0 +1,50 @@ +/* This file is part of the Project Athena Zephyr Notification System. + * It contains the hostmanager queueing routines. + * + * Created by: David C. Jedlinsky + * + * $Source$ + * $Author$ + * + * Copyright (c) 1987 by the Massachusetts Institute of Technology. + * For copying and distribution information, see the file + * "mit-copyright.h". + */ + +#include +#include + +#ifndef lint +static char rcsid_queue_c[] = "$Header$"; +#endif lint + +#ifdef DEBUG +#define DPR(a) fprintf(stderr, a) +#define DPR2(a,b) fprintf(stderr, a, b) +#else +#define DPR(a) +#define DPR2(a,b) +#endif + +Code_t add_notice_to_queue(notice) + ZNotice_t *notice; +{ + DPR ("Adding notice to queue...\n"); +} + +Code_t remove_notice_from_queue(notice) + ZNotice_t *notice; +{ + DPR ("Removing notice from queue...\n"); +} + +Code_t retransmit_queue(notice) + ZNotice_t *notice; +{ + DPR ("Retransmitting queue to new server...\n"); +} + +Code_t dump_queue() +{ + DPR ("Dumping queue...\n"); +} -- cgit v1.2.3