1 /* $NetBSD: midna_domain.h,v 1.4 2020/05/25 23:47:14 christos Exp $ */ 2 3 #ifndef _MIDNA_H_INCLUDED_ 4 #define _MIDNA_H_INCLUDED_ 5 6 /*++ 7 /* NAME 8 /* midna_domain 3h 9 /* SUMMARY 10 /* ASCII/UTF-8 domain name conversion 11 /* SYNOPSIS 12 /* #include <midna_domain.h> 13 /* DESCRIPTION 14 /* .nf 15 16 /* 17 * External interface. 18 */ 19 extern const char *midna_domain_to_ascii(const char *); 20 extern const char *midna_domain_to_utf8(const char *); 21 extern const char *midna_domain_suffix_to_ascii(const char *); 22 extern const char *midna_domain_suffix_to_utf8(const char *); 23 extern void midna_domain_pre_chroot(void); 24 25 extern int midna_domain_cache_size; 26 extern int midna_domain_transitional; 27 /* LICENSE 28 /* .ad 29 /* .fi 30 /* The Secure Mailer license must be distributed with this software. 31 /* AUTHOR(S) 32 /* Arnt Gulbrandsen 33 /* 34 /* Wietse Venema 35 /* IBM T.J. Watson Research 36 /* P.O. Box 704 37 /* Yorktown Heights, NY 10598, USA 38 /* 39 /* Wietse Venema 40 /* Google, Inc. 41 /* 111 8th Avenue 42 /* New York, NY 10011, USA 43 /*--*/ 44 45 #endif 46