aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmail-smtpc/qmail-smtpc.h
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2026-02-06 02:16:08 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2026-02-06 02:16:08 +0000
commit5ca4a0e5b65066f41af7c670e8200b0d0eba41dd (patch)
tree76f0fdef194f6227f4903d9139157a76b18f936e /src/qmail-smtpc/qmail-smtpc.h
parent025de935255c05d72a5c35d86c6c5c4d212247a1 (diff)
downloadsmtpd-starttls-proxy-5ca4a0e5b65066f41af7c670e8200b0d0eba41dd.tar.gz
Just name it qmail-remote after all
Diffstat (limited to 'src/qmail-smtpc/qmail-smtpc.h')
-rw-r--r--src/qmail-smtpc/qmail-smtpc.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/qmail-smtpc/qmail-smtpc.h b/src/qmail-smtpc/qmail-smtpc.h
deleted file mode 100644
index 29aa792..0000000
--- a/src/qmail-smtpc/qmail-smtpc.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* ISC license. */
-
-#ifndef QMAIL_SMTPC_H
-#define QMAIL_SMTPC_H
-
-#include <stddef.h>
-#include <stdint.h>
-
-#include <skalibs/cdb.h>
-#include <skalibs/stralloc.h>
-#include <skalibs/genalloc.h>
-
-#include "qmailr.h"
-
-#define dienomem() qmailr_tempsys("Unable to grow stralloc")
-
-
-/* dns */
-
-typedef struct mxip_s mxip, *mxip_ref ;
-struct mxip_s
-{
- size_t pos4 ;
- size_t pos6 ;
- uint16_t n4 ;
- uint16_t n6 ;
-} ;
-#define MXIP_ZERO { 0 }
-
-extern void dns_stuff (char const *, char const *const *, unsigned int, size_t *, genalloc *, stralloc *, unsigned int, char const *, unsigned int, char const *, unsigned int, uint32_t) ;
-
-
-/* smtproutes */
-
-typedef struct smtproutes_s smtproutes ;
-struct smtproutes_s
-{
- cdb map ;
-} ;
-#define SMTPROUTES_ZERO { .map = CDB_ZERO }
-
-extern int smtproutes_init (smtproutes *) ;
-extern int smtproutes_match (smtproutes const *, char const *, stralloc *, size_t *, uint16_t *) ;
-extern void smtproutes_free (smtproutes *) ;
-
-#endif