File: pfqtcp.h

package info (click to toggle)
pfqueue 0.5.3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,400 kB
  • ctags: 595
  • sloc: sh: 8,964; ansic: 3,904; makefile: 80
file content (28 lines) | stat: -rw-r--r-- 555 bytes parent folder | download
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

#ifndef __FE_PFQTCP_H
#define __FE_PFQTCP_H

#include "pfqmessage.h"

/* Protocol commands */

#define	CMD_NUMMSG	"NUMMSG"
#define	CMD_NUMQ	"NUMQ"
#define	CMD_QNAME	"QNAME"
#define CMD_SETQ	"SETQ"
#define CMD_LSTIDS	"LSTIDS"
#define CMD_FROM	"MSGFROM"
#define CMD_TO		"MSGTO"
#define CMD_SUBJ	"MSGSUBJ"
#define CMD_MSGID	"MSGID"
#define CMD_QUIT	"QUIT"

#define CMD_MSGDEL	"MSGDEL"
#define	CMD_MSGREQ	"MSGREQ"
#define CMD_MSGREL	"MSGREL"
#define CMD_MSGHOLD	"MSGHOLD"

#define CMD_REPLY_LEN	8
#define CMD_REPLY	"RESULT"
#define CMD_ERROR	"ERROR-"
#endif