summaryrefslogtreecommitdiff
path: root/zhm/queue.c
blob: 26c8e165da17914df0556174a6e1cd9d981c7189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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");
}