1explain_getdomainname_or_dieL(i3b)rary Functions Maneuxapllain_getdomainname_or_die(3)
2
3
4

NAME

6       explain_getdomainname_or_die - get domain name and report errors
7

SYNOPSIS

9       #include <libexplain/getdomainname.h>
10       void explain_getdomainname_or_die(char *data, size_t data_size);
11       int explain_getdomainname_on_error(char *data, size_t data_size);
12

DESCRIPTION

14       The  explain_getdomainname_or_die  function  is used to call the getdo‐
15       mainname(2) system call. On failure an explanation will be  printed  to
16       stderr,  obtained  from the explain_getdomainname(3) function, and then
17       the process terminates by calling exit(EXIT_FAILURE).
18
19       The explain_getdomainname_on_error function is used to call the  getdo‐
20       mainname(2)  system  call. On failure an explanation will be printed to
21       stderr, obtained from the explain_getdomainname(3) function, but  still
22       returns to the caller.
23
24       data    The  data, exactly as to be passed to the getdomainname(2) sys‐
25               tem call.
26
27       data_size
28               The data_size, exactly as to be passed to the  getdomainname(2)
29               system call.
30

RETURN VALUE

32       The  explain_getdomainname_or_die function only returns on success, see
33       getdomainname(2) for more information. On failure, prints  an  explana‐
34       tion and exits, it does not return.
35
36       The  explain_getdomainname_on_error  function  always returns the value
37       return by the wrapped getdomainname(2) system call.
38

EXAMPLE

40       The explain_getdomainname_or_die function is intended to be used  in  a
41       fashion similar to the following example:
42              explain_getdomainname_or_die(data, data_size);
43

SEE ALSO

45       getdomainname(2)
46               get domain name
47
48       explain_getdomainname(3)
49               explain getdomainname(2) errors
50
51       exit(2) terminate the calling process
52
54       libexplain version 1.4
55       Copyright (C) 2009 Peter Miller
56
57
58
59                                               explain_getdomainname_or_die(3)
Impressum