summaryrefslogtreecommitdiff
path: root/zhm/queue.c
diff options
context:
space:
mode:
authorGravatar David C. Jedlinsky <opus@mit.edu>1987-06-16 15:15:10 +0000
committerGravatar David C. Jedlinsky <opus@mit.edu>1987-06-16 15:15:10 +0000
commita314d7a047382674ed27f1db62a698b8c4a470aa (patch)
treec074275396e48cd686fc271ae2007e8201de8b20 /zhm/queue.c
parent7ba4696aea9af0f39578ee5b3eeff9b366065dc4 (diff)
Initial revision
Diffstat (limited to 'zhm/queue.c')
-rw-r--r--zhm/queue.c50
1 files changed, 50 insertions, 0 deletions
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 <zephyr/mit-copyright.h>
+#include <zephyr/zephyr.h>
+
+#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");
+}