From 16720e5ffa2f10c5a969c4027ac570ce46832ea3 Mon Sep 17 00:00:00 2001 From: "Robert S. French" Date: Wed, 10 Jun 1987 08:34:32 +0000 Subject: Initial revision --- lib/ZSendNot.c | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 lib/ZSendNot.c (limited to 'lib/ZSendNot.c') diff --git a/lib/ZSendNot.c b/lib/ZSendNot.c new file mode 100644 index 0000000..683b666 --- /dev/null +++ b/lib/ZSendNot.c @@ -0,0 +1,41 @@ +/* This file is part of the Project Athena Zephyr Notification System. + * It contains source for the ZSendNotice 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 + +#include + +Code_t ZSendNotice(notice) + ZNotice_t *notice; +{ + Code_t retval; + char *buffer; + int len; + + buffer = (char *)malloc(BUFSIZ); + if (!buffer) + return (ZERR_NOMEM); + + len = BUFSIZ; + + if ((retval = ZFormatNotice(notice,buffer,sizeof buffer,&len)) < 0) { + free(buffer); + return (retval); + } + + retval = ZSendPacket(buffer,len); + free(buffer); + + return (retval); +} -- cgit v1.2.3