getprotoent_r (3) - Linux Manuals
getprotoent_r: get
NAME
getprotoent_r, getprotobyname_r, getprotobynumber_r - get protocol entry (reentrant)
SYNOPSIS
#include <netdb.h> int getprotoent_r(struct protoent *result_buf, char *buf, size_t buflen, struct protoent **result); int getprotobyname_r(const char *name, struct protoent *result_buf, char *buf, size_t buflen, struct protoent **result); int getprotobynumber_r(int proto, struct protoent *result_buf, char *buf, size_t buflen, struct protoent **result);Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
getprotoent_r(),
getprotobyname_r(),
getprotobynumber_r():
Instead of returning a pointer to a statically allocated
protoent
structure as the function result,
these functions copy the structure into the location pointed to by
result_buf.
The
buf
array is used to store the string fields pointed to by the returned
protoent
structure.
(The nonreentrant functions allocate these strings in static storage.)
The size of this array is specified in
buflen.
If
buf
is too small, the call fails with the error
ERANGE,
and the caller must try again with a larger buffer.
(A buffer of length 1024 bytes should be sufficient for most applications.)
If the function call successfully obtains a protocol record, then
*result
is set pointing to
result_buf;
otherwise,
*result
is set to NULL.
On error, record not found
(getprotobyname_r(),
getprotobynumber_r()),
or end of input
(getprotoent_r())
result
is set to NULL.
$ ./a.out tcp 1
ERANGE! Retrying with larger buffer
getprotobyname_r() returned: 0 (success) (buflen=78)
p_name=tcp; p_proto=6; aliases=TCP
$ ./a.out xxx 1
ERANGE! Retrying with larger buffer
getprotobyname_r() returned: 0 (success) (buflen=100)
Call failed/record not found
#define MAX_BUF 10000
int
main(int argc, char *argv[])
{
DESCRIPTION
The
getprotoent_r(),
getprotobyname_r(),
and
getprotobynumber_r()
functions are the reentrant equivalents of, respectively,
getprotoent(3),
getprotobyname(3),
and
getprotobynumber(3).
They differ in the way that the
protoent
structure is returned,
and in the function calling signature and return value.
This manual page describes just the differences from
the nonreentrant functions.
RETURN VALUE
On success, these functions return 0.
On error, they return one of the positive error numbers listed in ERRORS.
ERRORS
ATTRIBUTES
For an explanation of the terms used in this section, see
attributes(7).
Interface Attribute Value
getprotoent_r(),
getprotobyname_r(),
getprotobynumber_r()
Thread safety MT-Safe locale CONFORMING TO
These functions are GNU extensions.
Functions with similar names exist on some other systems,
though typically with different calling signatures.
EXAMPLES
The program below uses
getprotobyname_r()
to retrieve the protocol record for the protocol named
in its first command-line argument.
If a second (integer) command-line argument is supplied,
it is used as the initial value for
buflen;
if
getprotobyname_r()
fails with the error
ERANGE,
the program retries with larger buffer sizes.
The following shell session shows a couple of sample runs:
Program source
#define _GNU_SOURCE
#include <ctype.h>
#include <netdb.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>