1tld_check_4(3) libidn tld_check_4(3)
2
3
4
6 tld_check_4 - API function
7
9 #include <tld.h>
10
11 int tld_check_4(const uint32_t * in, size_t inlen, size_t * errpos,
12 const Tld_table ** overrides);
13
15 const uint32_t * in
16 Array of unicode code points to process. Does not need to
17 be zero terminated.
18
19 size_t inlen
20 Number of unicode code points.
21
22 size_t * errpos
23 Position of offending character is returned here.
24
25 const Tld_table ** overrides
26 A Tld_table array of additional domain restriction struc‐
27 tures that complement and supersede the built-in informa‐
28 tion.
29
31 Test each of the code points in in for whether or not they are allowed
32 by the information in overrides or by the built-in TLD restriction
33 data. When data for the same TLD is available both internally and in
34 overrides, the information in overrides takes precedence. If several
35 entries for a specific TLD are found, the first one is used. If over‐
36 rides is NULL, only the built-in information is used. The position of
37 the first offending character is returned in errpos.
38
40 Returns the Tld_rc value TLD_SUCCESS if all code points are valid or
41 when tld is null, TLD_INVALID if a character is not allowed, or addi‐
42 tional error codes on general failure conditions.
43
45 Report bugs to <bug-libidn@gnu.org>. GNU Libidn home page:
46 http://www.gnu.org/software/libidn/ General help using GNU software:
47 http://www.gnu.org/gethelp/
48
50 Copyright © 2002-2013 Simon Josefsson.
51 Copying and distribution of this file, with or without modification,
52 are permitted in any medium without royalty provided the copyright
53 notice and this notice are preserved.
54
56 The full documentation for libidn is maintained as a Texinfo manual.
57 If the info and libidn programs are properly installed at your site,
58 the command
59
60 info libidn
61
62 should give you access to the complete manual.
63
64
65
66libidn 1.28 tld_check_4(3)