Searched refs:getservent (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/CPANInternal-140/Exporter-Easy/
H A Dbench20 our(@EXPORT) = qw(getservbyname getservbyport getservent getserv);
25 EXPORT => [qw(getservbyname getservbyport getservent getserv)],
34 @EXPORT = qw(getservbyname getservbyport getservent getserv);
42 @EXPORT = qw(getservbyname getservbyport getservent getserv);
51 @EXPORT = qw(getservbyname getservbyport getservent getserv);
58 EXPORT => [qw(getservbyname getservbyport getservent getserv)],
69 @EXPORT = qw(getservbyname getservbyport getservent getserv);
76 EXPORT => [qw(getservbyname getservbyport getservent getserv)],
/macosx-10.9.5/CPANInternal-140/Exporter-Easy-0.16/
H A Dbench20 our(@EXPORT) = qw(getservbyname getservbyport getservent getserv);
25 EXPORT => [qw(getservbyname getservbyport getservent getserv)],
34 @EXPORT = qw(getservbyname getservbyport getservent getserv);
42 @EXPORT = qw(getservbyname getservbyport getservent getserv);
51 @EXPORT = qw(getservbyname getservbyport getservent getserv);
58 EXPORT => [qw(getservbyname getservbyport getservent getserv)],
69 @EXPORT = qw(getservbyname getservbyport getservent getserv);
76 EXPORT => [qw(getservbyname getservbyport getservent getserv)],
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/
H A Dnetdb.h95 /* $Copyright: * * Copyright 1998-2000 by the Massachusetts Institute of Technology. * * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and this permission notice appear in * supporting documentation, and that the name of M.I.T. not be used in * advertising or publicity pertaining to distribution of the software * without specific, written prior permission. Furthermore if you modify * this software you must label your software as modified software and not * distribute it in such a fashion that it might be confused with the * original MIT software. M.I.T. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * Individual source code files are copyright MIT, Cygnus Support, * OpenVision, Oracle, Sun Soft, FundsXpress, and others. * * Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, * and Zephyr are trademarks of the Massachusetts Institute of Technology * (MIT). No commercial use of these trademarks may be made without prior * written permission of MIT. * * "Commercial use" means use of a name in a product or other for-profit * manner. It does NOT prevent a commercial firm from referring to the MIT * trademarks in order to convey information (although in doing so, * recognition of their trademark status should be given). * $ */ /* $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/netdb.h,v 1.4 2005/01/10 19:10:48 snsimon Exp $ */ /* MIT Sockets Library * netdb.h * macdev@mit.edu */ #ifndef _NETDB_H #define _NETDB_H #include <stdlib.h> #ifdef __cplusplus extern "C" { #endif struct hostent { char *h_name; /* official (cannonical) name of host */ char **h_aliases; /* pointer to array of pointers of alias names */ int h_addrtype; /* host address type: AF_INET or AF_INET6 */ int h_length; /* length of address: 4 or 16 */ char **h_addr_list; /* pointer to array of pointers with IPv4 or IPv6 addresses */ }; #define h_addr h_addr_list[0] /* first address in list */ struct servent { char *s_name; /* official service name */ char **s_aliases; /* alias list */ int s_port; /* port number, network-byte order */ char *s_proto; /* protocol to use */ }; #if defined(__CFM68K__) && !defined(__USING_STATIC_LIBS__) # pragma import on #endif #if !TARGET_RT_MAC_CFM # pragma d0_pointers on #endif struct hostent *gethostbyname(const char *hostname); struct hostent *gethostbyaddr(const char *addr, size_t len, int family); /* Gets the local host's hostname. If namelen isn't long enough, it puts in as much of the name as possible, without a terminating null. This is done so it is compatible with the unix version. This is, admittedly, the wrong way to write a code, but my excuse is compatibility. It should really dynamically allocate space. Oh well. It also assert()'s if you don't pass it a reasonably sized buffer. */ int gethostname(char *name, size_t namelen); /* Opens the service database if needed and gets the next service entry. Returns NULL if you have read them all. On error, returns NULL and calls SetMITLibError(). */ struct servent *getservent (void); /* Closes the service database. On error, calls SetMITLibError(). */ void endservent (voi (…)
/macosx-10.9.5/libpcap-42/libpcap/Win32/Include/net/
H A Dnetdb.h113 struct servent *getservent (void);
/macosx-10.9.5/libpcap-42/libpcap/Win32/Src/
H A Dgetservent.c35 static char sccsid[] = "@(#)getservent.c 8.1 (Berkeley) 6/4/93";
79 getservent() function
/macosx-10.9.5/Libinfo-449.1.3/lookup.subproj/
H A Dnetdb.h283 struct servent *getservent(void);
H A Dlibinfo.c1834 getservent(void) function
/macosx-10.9.5/Libinfo-449.1.3/xcodescripts/
H A Dinstall_files.sh96 gen.subproj/getservent.3 \
161 LinkManPages getservent.3 \
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/win32/include/lwres/
H A Dnetdb.h322 #define getservent lwres_getservent macro
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/include/lwres/
H A Dnetdb.h.in328 #define getservent lwres_getservent
/macosx-10.9.5/libresolv-54/
H A Dres_mkupdate.c921 while ((sp = getservent()) != NULL) {
/macosx-10.9.5/network_cmds-433/netstat.tproj/
H A Dinet.c149 while (NULL != (s = getservent()))
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Daddrtoname.c728 while ((sv = getservent()) != NULL) {
/macosx-10.9.5/bash-92/bash-3.2/
H A Dbashline.c1759 while (srvent = getservent ())
H A Dconfigure12386 getaddrinfo gethostbyname getservbyname getservent inet_aton \
/macosx-10.9.5/bind9-45.100/bind9/contrib/nslint-2.1a3/
H A Dnslint.c2267 while ((sp = getservent()) != NULL) {
/macosx-10.9.5/lsof-52/lsof/
H A Dprint.c51 * getservent() -- see lkup_port()
288 * getservent() scan
306 while ((se = getservent())) {
/macosx-10.9.5/ruby-104/ruby/win32/
H A Dwin32.c3762 struct servent *getservent (void) {return (struct servent *) NULL;} function

Completed in 173 milliseconds