summaryrefslogtreecommitdiff
path: root/lib/ZSendList.c
diff options
context:
space:
mode:
authorGravatar Robert S. French <rfrench@mit.edu>1987-06-10 08:34:32 +0000
committerGravatar Robert S. French <rfrench@mit.edu>1987-06-10 08:34:32 +0000
commit16720e5ffa2f10c5a969c4027ac570ce46832ea3 (patch)
treeaeabd7f4502221a5fafd224d52e7c6487b896d29 /lib/ZSendList.c
parenta004e96fce359c109eae47d8f2ddbfcbb808f0cd (diff)
Initial revision
Diffstat (limited to 'lib/ZSendList.c')
-rw-r--r--lib/ZSendList.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/ZSendList.c b/lib/ZSendList.c
new file mode 100644
index 0000000..dc21d63
--- /dev/null
+++ b/lib/ZSendList.c
@@ -0,0 +1,42 @@
+/* This file is part of the Project Athena Zephyr Notification System.
+ * It contains source for the ZSendList function.
+ *
+ * Created by: Robert French
+ *
+ * $Source$
+ * $Author$
+ *
+ * Copyright (c) 1987 by the Massachusetts Institute of Technology.
+ * For copying and distribution information, see the file
+ * "mit-copyright.h".
+ */
+/* $Header$ */
+
+#include <zephyr/mit-copyright.h>
+
+#include <zephyr/zephyr_internal.h>
+
+Code_t ZSendList(notice,list,nitems)
+ ZNotice_t *notice;
+ char *list[];
+ int nitems;
+{
+ Code_t retval;
+ char *buffer;
+ int len;
+
+ buffer = (char *)malloc(BUFSIZ);
+ if (!buffer)
+ return (ZERR_NOMEM);
+
+ if ((retval = ZFormatNoticeList(notice,list,nitems,buffer,
+ BUFSIZ,&len)) < 0) {
+ free(buffer);
+ return (retval);
+ }
+
+ retval = ZSendPacket(buffer,len);
+ free(buffer);
+
+ return (retval);
+}