{"id":4758,"date":"2022-12-20T18:36:51","date_gmt":"2022-12-20T21:36:51","guid":{"rendered":"http:\/\/lode.uno\/linux-man\/index.php\/2022\/12\/20\/endservent-man3p\/"},"modified":"2022-12-20T18:36:51","modified_gmt":"2022-12-20T21:36:51","slug":"endservent-man3p","status":"publish","type":"post","link":"https:\/\/lode.uno\/linux-man\/2022\/12\/20\/endservent-man3p\/","title":{"rendered":"ENDSERVENT (man3p)"},"content":{"rendered":"<h1 align=\"center\">ENDSERVENT<\/h1>\n<p> <a href=\"#PROLOG\">PROLOG<\/a><br \/> <a href=\"#NAME\">NAME<\/a><br \/> <a href=\"#SYNOPSIS\">SYNOPSIS<\/a><br \/> <a href=\"#DESCRIPTION\">DESCRIPTION<\/a><br \/> <a href=\"#RETURN VALUE\">RETURN VALUE<\/a><br \/> <a href=\"#ERRORS\">ERRORS<\/a><br \/> <a href=\"#EXAMPLES\">EXAMPLES<\/a><br \/> <a href=\"#APPLICATION USAGE\">APPLICATION USAGE<\/a><br \/> <a href=\"#RATIONALE\">RATIONALE<\/a><br \/> <a href=\"#FUTURE DIRECTIONS\">FUTURE DIRECTIONS<\/a><br \/> <a href=\"#SEE ALSO\">SEE ALSO<\/a><br \/> <a href=\"#COPYRIGHT\">COPYRIGHT<\/a> <\/p>\n<hr>\n<h2>PROLOG <a name=\"PROLOG\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">This manual page is part of the POSIX Programmer\u2019s Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.<\/p>\n<h2>NAME <a name=\"NAME\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">endservent, getservbyname, getservbyport, getservent, setservent \u2014 network services database functions<\/p>\n<h2>SYNOPSIS <a name=\"SYNOPSIS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">#include <netdb.h><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">void endservent(void); <br \/> struct servent *getservbyname(const char *<i>name<\/i>, const char *<i>proto<\/i>); <br \/> struct servent *getservbyport(int <i>port<\/i>, const char *<i>proto<\/i>); <br \/> struct servent *getservent(void); <br \/> void setservent(int <i>stayopen<\/i>);<\/p>\n<h2>DESCRIPTION <a name=\"DESCRIPTION\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">These functions shall retrieve information about network services. This information is considered to be stored in a database that can be accessed sequentially or randomly. The implementation of this database is unspecified.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <i>setservent<\/i>() function shall open a connection to the database, and set the next entry to the first entry. If the <i>stayopen<\/i> argument is non-zero, the <i>net<\/i> database shall not be closed after each call to the <i>getservent<\/i>() function (either directly, or indirectly through one of the other <i>getserv*<\/i>() functions), and the implementation may maintain an open file descriptor for the database.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <i>getservent<\/i>() function shall read the next entry of the database, opening and closing a connection to the database as necessary.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <i>getservbyname<\/i>() function shall search the database from the beginning and find the first entry for which the service name specified by <i>name<\/i> matches the <i>s_name<\/i> member and the protocol name specified by <i>proto<\/i> matches the <i>s_proto<\/i> member, opening and closing a connection to the database as necessary. If <i>proto<\/i> is a null pointer, any value of the <i>s_proto<\/i> member shall be matched.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <i>getservbyport<\/i>() function shall search the database from the beginning and find the first entry for which the port specified by <i>port<\/i> matches the <i>s_port<\/i> member and the protocol name specified by <i>proto<\/i> matches the <i>s_proto<\/i> member, opening and closing a connection to the database as necessary. If <i>proto<\/i> is a null pointer, any value of the <i>s_proto<\/i> member shall be matched. The <i>port<\/i> argument shall be a value obtained by converting a <b>uint16_t<\/b> in network byte order to <b>int<\/b>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <i>getservbyname<\/i>(), <i>getservbyport<\/i>(), and <i>getservent<\/i>() functions shall each return a pointer to a <b>servent<\/b> structure, the members of which shall contain the fields of an entry in the network services database.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The <i>endservent<\/i>() function shall close the database, releasing any open file descriptor.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">These functions need not be thread-safe.<\/p>\n<h2>RETURN VALUE <a name=\"RETURN VALUE\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">Upon successful completion, <i>getservbyname<\/i>(), <i>getservbyport<\/i>(), and <i>getservent<\/i>() return a pointer to a <b>servent<\/b> structure if the requested entry was found, and a null pointer if the end of the database was reached or the requested entry was not found. Otherwise, a null pointer is returned.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The application shall not modify the structure to which the return value points, nor any storage areas pointed to by pointers within the structure. The returned pointer, and pointers within the structure, might be invalidated or the structure or the storage areas might be overwritten by a subsequent call to <i>getservbyname<\/i>(), <i>getservbyport<\/i>(), or <i>getservent<\/i>(). The returned pointer, and pointers within the structure, might also be invalidated if the calling thread is terminated.<\/p>\n<h2>ERRORS <a name=\"ERRORS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">No errors are defined.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><i>The following sections are informative.<\/i><\/p>\n<h2>EXAMPLES <a name=\"EXAMPLES\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">None.<\/p>\n<h2>APPLICATION USAGE <a name=\"APPLICATION USAGE\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">The <i>port<\/i> argument of <i>getservbyport<\/i>() need not be compatible with the port values of all address families.<\/p>\n<h2>RATIONALE <a name=\"RATIONALE\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">None.<\/p>\n<h2>FUTURE DIRECTIONS <a name=\"FUTURE DIRECTIONS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">None.<\/p>\n<h2>SEE ALSO <a name=\"SEE ALSO\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\"><i>endhostent<\/i>(), <i>endprotoent<\/i>(), <i>htonl<\/i>(), <i>inet_addr<\/i>()<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The Base Definitions volume of POSIX.1-2017, <b><netdb.h><\/b><\/p>\n<h2>COPYRIGHT <a name=\"COPYRIGHT\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1-2017, Standard for Information Technology &#8212; Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 7, 2018 Edition, Copyright (C) 2018 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http:\/\/www.opengroup.org\/unix\/online.html .<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">Any typographical or formatting errors that appear in this page are most likely to have been introduced during the conversion of the source files to man page format. To report such errors, see https:\/\/www.kernel.org\/doc\/man-pages\/reporting_bugs.html .<\/p>\n<hr>\n","protected":false},"excerpt":{"rendered":"<p>  endservent, getservbyname, getservbyport, getservent, setservent \u2014 network services database functions <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3779,1],"tags":[1676,1594],"class_list":["post-4758","post","type-post","status-publish","format-standard","hentry","category-3pm-perl-llamadas-de-bibliotecas","category-sin-categoria","tag-endservent","tag-man3p"],"gutentor_comment":0,"_links":{"self":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/4758","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/comments?post=4758"}],"version-history":[{"count":0,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/4758\/revisions"}],"wp:attachment":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/media?parent=4758"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/categories?post=4758"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/tags?post=4758"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}