diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-11 21:44:02 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-11 21:44:02 +0000 |
commit | 34d9eaebd2d4c124503892585e88f2b7e818d8a3 (patch) | |
tree | 4084b81b8c4959fe3fa63188f39107484e4279cd /usr.sbin/smtpd/smtpd.h | |
parent | 57ed48f8b6776d3fd21744274f64cee9332885f9 (diff) |
rename field member + whitespaces
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 1aceaf1efc9..08ef9e74679 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.496 2015/12/11 07:51:38 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.497 2015/12/11 21:44:01 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -1075,7 +1075,7 @@ struct ca_cert_resp_msg { struct ca_vrfy_req_msg { uint64_t reqid; - char pkiname[HOST_NAME_MAX+1]; + char name[HOST_NAME_MAX+1]; unsigned char *cert; off_t cert_len; size_t n_chain; @@ -1210,10 +1210,12 @@ void imsgproc_set_write(struct imsgproc *); void imsgproc_set_read_write(struct imsgproc *); void imsgproc_reset_callback(struct imsgproc *, void (*)(struct imsg *, void *), void *); + /* limit.c */ void limit_mta_set_defaults(struct mta_limits *); int limit_mta_set(struct mta_limits *, const char*, int64_t); + /* lka.c */ pid_t lka(void); @@ -1308,6 +1310,7 @@ struct mta_task *mta_route_next_task(struct mta_relay *, struct mta_route *); const char *mta_host_to_text(struct mta_host *); const char *mta_relay_to_text(struct mta_relay *); + /* mta_session.c */ void mta_session(struct mta_relay *, struct mta_route *); void mta_session_imsg(struct mproc *, struct imsg *); @@ -1342,6 +1345,7 @@ int queue_envelope_update(struct envelope *); int queue_envelope_walk(struct envelope *); int queue_message_walk(struct envelope *, uint32_t, int *, void **); + /* ruleset.c */ struct rule *ruleset_match(const struct envelope *); @@ -1448,6 +1452,7 @@ const char *sockaddr_to_text(struct sockaddr *); const char *mailaddr_to_text(const struct mailaddr *); const char *expandnode_to_text(struct expandnode *); + /* util.c */ typedef struct arglist arglist; struct arglist { @@ -1497,6 +1502,7 @@ int base64_decode(char const *, unsigned char *, size_t); int waitq_wait(void *, void (*)(void *, void *, void *), void *); void waitq_run(void *, void *); + /* runq.c */ struct runq; |