blob: 9565b55fb4ca225e632d53c3c9c36c74ac7eabb3 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*++
/* NAME
/* mail_command_server 3
/* SUMMARY
/* single-command server
/* SYNOPSIS
/* #include <mail_proto.h>
/*
/* int mail_command_server(stream, type, name, ...)
/* VSTREAM *stream;
/* int type;
/* const char *name;
/* DESCRIPTION
/* This module implements the server interface for single-command
/* requests: a clients sends a single command and expects a single
/* completion status code.
/*
/* Arguments:
/* .IP stream
/* Server endpoint.
/* .IP "type, name, ..."
/* Attribute list as defined in attr_scan(3).
/* DIAGNOSTICS
/* Fatal: out of memory.
/* SEE ALSO
/* attr_scan(3)
/* mail_command_client(3) client interface
/* mail_proto(3h), client-server protocol
#include <mail_proto.h>
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System library. */
#include <sys_defs.h>
#include <stdlib.h> /* 44BSD stdarg.h uses abort() */
#include <stdarg.h>
#include <string.h>
/* Utility library. */
#include <vstream.h>
/* Global library. */
#include "mail_proto.h"
/* mail_command_server - read single-command request */
int mail_command_server(VSTREAM *stream,...)
{
va_list ap;
int count;
va_start(ap, stream);
count = attr_vscan(stream, ATTR_FLAG_MISSING, ap);
va_end(ap);
return (count);
}
|