mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 20:08:21 +08:00
28 lines
602 B
C
28 lines
602 B
C
#ifndef ACL_VALID_HOSTNAME_INCLUDE_H
|
|
#define ACL_VALID_HOSTNAME_INCLUDE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "stdlib/acl_define.h"
|
|
/* External interface */
|
|
|
|
#define ACL_VALID_HOSTNAME_LEN 255 /* RFC 1035 */
|
|
#define ACL_VALID_LABEL_LEN 63 /* RFC 1035 */
|
|
|
|
#define ACL_DONT_GRIPE 0
|
|
#define ACL_DO_GRIPE 1
|
|
|
|
ACL_API int acl_valid_hostname(const char *, int);
|
|
ACL_API int acl_valid_hostaddr(const char *, int);
|
|
ACL_API int acl_valid_ipv4_hostaddr(const char *, int);
|
|
ACL_API int acl_valid_ipv6_hostaddr(const char *, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|