Home
last modified time | relevance | path

Searched refs:protoent (Results 1 – 25 of 1363) sorted by relevance

12345678910>>...55

/dports/security/nmap/nmap-7.91/
H A Dprotocols.cc117 if (protno == current->protoent->p_proto) { in nmap_protocols_init()
131 current->protoent = (struct protoent *) cp_alloc(sizeof(struct protoent)); in nmap_protocols_init()
138 current->protoent->p_name = cp_strdup(protocolname); in nmap_protocols_init()
139 current->protoent->p_proto = protno; in nmap_protocols_init()
140 current->protoent->p_aliases = NULL; in nmap_protocols_init()
163 if (wildtest(mask, current->protoent->p_name)) { in addprotocolsfromservmask()
164 porttbl[ntohs(current->protoent->p_proto)] |= SCAN_PROTOCOLS; in addprotocolsfromservmask()
175 struct protoent *nmap_getprotbynum(int num) { in nmap_getprotbynum()
183 if (num == current->protoent->p_proto) in nmap_getprotbynum()
184 return current->protoent; in nmap_getprotbynum()
/dports/lang/perl5.32/perl-5.32.1/lib/Net/
H A Dprotoent.t19 our @protoent = getprotobyname "tcp"; # This is the function getprotobyname.
20 unless (@protoent) { print "1..0 # Skip: no tcp protocol\n"; exit 0 }
25 use Net::protoent;
29 my $protoent = getprotobyname "tcp"; # This is the OO getprotobyname.
31 print "not " unless $protoent->name eq $protoent[0];
34 print "not " unless $protoent->proto == $protoent[2];
/dports/lang/perl5.34/perl-5.34.0/lib/Net/
H A Dprotoent.t19 our @protoent = getprotobyname "tcp"; # This is the function getprotobyname.
20 unless (@protoent) { print "1..0 # Skip: no tcp protocol\n"; exit 0 }
25 use Net::protoent;
29 my $protoent = getprotobyname "tcp"; # This is the OO getprotobyname.
31 print "not " unless $protoent->name eq $protoent[0];
34 print "not " unless $protoent->proto == $protoent[2];
/dports/lang/perl5.30/perl-5.30.3/lib/Net/
H A Dprotoent.t19 our @protoent = getprotobyname "tcp"; # This is the function getprotobyname.
20 unless (@protoent) { print "1..0 # Skip: no tcp protocol\n"; exit 0 }
25 use Net::protoent;
29 my $protoent = getprotobyname "tcp"; # This is the OO getprotobyname.
31 print "not " unless $protoent->name eq $protoent[0];
34 print "not " unless $protoent->proto == $protoent[2];
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/lib/Net/
H A Dprotoent.t19 our @protoent = getprotobyname "tcp"; # This is the function getprotobyname.
20 unless (@protoent) { print "1..0 # Skip: no tcp protocol\n"; exit 0 }
25 use Net::protoent;
29 my $protoent = getprotobyname "tcp"; # This is the OO getprotobyname.
31 print "not " unless $protoent->name eq $protoent[0];
34 print "not " unless $protoent->proto == $protoent[2];
/dports/www/squid/squid-4.15/compat/os/
H A Dopensolaris_10_netdb.h227 struct protoent { struct
262 struct protoent *getprotobyname_r
264 struct protoent *getprotobynumber_r
265 (int, struct protoent *, char *, int);
266 struct protoent *getprotoent_r(struct protoent *, char *, int);
280 struct protoent *getprotoent(void);
377 struct protoent *getprotobyname_r();
379 struct protoent *getprotoent_r();
393 struct protoent *getprotobyname();
394 struct protoent *getprotobynumber();
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/lib/libc/net/
H A Dprotoent.h36 struct protoent proto;
44 struct protoent *getprotoent_r(struct protoent *, struct protoent_data *);
45 struct protoent *getprotobyname_r(const char *,
46 struct protoent *, struct protoent_data *);
47 struct protoent *getprotobynumber_r(int,
48 struct protoent *, struct protoent_data *);
/dports/lang/gnatdroid-sysroot/android-19-arm/usr/include/
H A Dnetdb.h107 struct protoent { struct
211 struct protoent *getprotobyname(const char *);
212 struct protoent *getprotobynumber(int);
239 int getprotobyname_r(const char *, struct protoent *, char *, size_t, struct protoent **);
240 int getprotobynumber_r(int, struct protoent *, char *, size_t, struct protoent **);
241 struct protoent *getprotoent(void);
242 int getprotoent_r(struct protoent *, char *, size_t, struct protoent **);
/dports/lang/gnatdroid-sysroot-x86/android-19-x86/usr/include/
H A Dnetdb.h107 struct protoent { struct
211 struct protoent *getprotobyname(const char *);
212 struct protoent *getprotobynumber(int);
239 int getprotobyname_r(const char *, struct protoent *, char *, size_t, struct protoent **);
240 int getprotobynumber_r(int, struct protoent *, char *, size_t, struct protoent **);
241 struct protoent *getprotoent(void);
242 int getprotoent_r(struct protoent *, char *, size_t, struct protoent **);
/dports/dns/libbind/libbind-6.0/irs/
H A Dgetprotoent_r.c37 copy_protoent(struct protoent *, struct protoent *, PROTO_R_COPY_ARGS);
40 getprotobyname_r(const char *name, struct protoent *pptr, PROTO_R_ARGS) { in getprotobyname_r()
41 struct protoent *pe = getprotobyname(name); in getprotobyname_r()
60 getprotobynumber_r(int proto, struct protoent *pptr, PROTO_R_ARGS) { in getprotobynumber_r()
61 struct protoent *pe = getprotobynumber(proto); in getprotobynumber_r()
86 getprotoent_r(struct protoent *pptr, PROTO_R_ARGS) { in getprotoent_r()
87 struct protoent *pe = getprotoent(); in getprotoent_r()
139 copy_protoent(struct protoent *pe, struct protoent *pptr, PROTO_R_COPY_ARGS) { in copy_protoent()
183 copy_protoent(struct protoent *pe, struct protoent *pptr, PROTO_R_COPY_ARGS) { in copy_protoent()
H A Dirp_pr.c56 struct protoent proto;
62 static struct protoent * pr_next(struct irs_pr *);
64 static struct protoent * pr_bynumber(struct irs_pr *, int);
68 static void free_proto(struct protoent *pr);
130 static struct protoent *
133 struct protoent *pr = &pvt->proto; in pr_byname()
179 static struct protoent *
182 struct protoent *pr = &pvt->proto; in pr_bynumber()
257 static struct protoent *
260 struct protoent *pr = &pvt->proto; in pr_next()
[all …]
/dports/dns/libbind/libbind-6.0/include/
H A Dnetdb.h166 struct protoent { struct
395 struct protoent *getprotobynumber __P((int));
396 struct protoent *getprotoent __P((void));
461 struct protoent *, struct protoent_data *));
530 size_t, struct protoent **));
532 struct protoent **));
533 int getprotoent_r __P((struct protoent *, char *, size_t, struct protoent **));
536 struct protoent *, char *, int));
537 struct protoent *getprotobynumber_r __P((int,
538 struct protoent *, char *, int));
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp9 void print_protoent(protoent *curr_entry) { in print_protoent()
19 protoent entry; in print_all_protoent()
21 protoent *curr_entry; in print_all_protoent()
29 protoent entry; in print_protoent_by_name()
31 protoent *curr_entry; in print_protoent_by_name()
39 protoent entry; in print_protoent_by_num()
41 protoent *curr_entry; in print_protoent_by_num()
/dports/devel/wasi-compiler-rt11/compiler-rt-11.0.1.src/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp9 void print_protoent(protoent *curr_entry) { in print_protoent()
19 protoent entry; in print_all_protoent()
21 protoent *curr_entry; in print_all_protoent()
29 protoent entry; in print_protoent_by_name()
31 protoent *curr_entry; in print_protoent_by_name()
39 protoent entry; in print_protoent_by_num()
41 protoent *curr_entry; in print_protoent_by_num()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp15 void print_protoent(protoent *curr_entry) { in print_protoent()
25 protoent entry; in print_all_protoent()
27 protoent *curr_entry; in print_all_protoent()
37 protoent entry; in print_protoent_by_name()
39 protoent *curr_entry; in print_protoent_by_name()
47 protoent entry; in print_protoent_by_num()
49 protoent *curr_entry; in print_protoent_by_num()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp15 void print_protoent(protoent *curr_entry) { in print_protoent()
25 protoent entry; in print_all_protoent()
27 protoent *curr_entry; in print_all_protoent()
37 protoent entry; in print_protoent_by_name()
39 protoent *curr_entry; in print_protoent_by_name()
47 protoent entry; in print_protoent_by_num()
49 protoent *curr_entry; in print_protoent_by_num()
/dports/devel/llvm12/llvm-project-12.0.1.src/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp15 void print_protoent(protoent *curr_entry) { in print_protoent()
25 protoent entry; in print_all_protoent()
27 protoent *curr_entry; in print_all_protoent()
37 protoent entry; in print_protoent_by_name()
39 protoent *curr_entry; in print_protoent_by_name()
47 protoent entry; in print_protoent_by_num()
49 protoent *curr_entry; in print_protoent_by_num()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp15 void print_protoent(protoent *curr_entry) { in print_protoent()
25 protoent entry; in print_all_protoent()
27 protoent *curr_entry; in print_all_protoent()
37 protoent entry; in print_protoent_by_name()
39 protoent *curr_entry; in print_protoent_by_name()
47 protoent entry; in print_protoent_by_num()
49 protoent *curr_entry; in print_protoent_by_num()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp15 void print_protoent(protoent *curr_entry) { in print_protoent()
25 protoent entry; in print_all_protoent()
27 protoent *curr_entry; in print_all_protoent()
37 protoent entry; in print_protoent_by_name()
39 protoent *curr_entry; in print_protoent_by_name()
47 protoent entry; in print_protoent_by_num()
49 protoent *curr_entry; in print_protoent_by_num()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp15 void print_protoent(protoent *curr_entry) { in print_protoent()
25 protoent entry; in print_all_protoent()
27 protoent *curr_entry; in print_all_protoent()
37 protoent entry; in print_protoent_by_name()
39 protoent *curr_entry; in print_protoent_by_name()
47 protoent entry; in print_protoent_by_num()
49 protoent *curr_entry; in print_protoent_by_num()
/dports/devel/llvm13/llvm-project-13.0.1.src/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dprotoent.cpp15 void print_protoent(protoent *curr_entry) { in print_protoent()
25 protoent entry; in print_all_protoent()
27 protoent *curr_entry; in print_all_protoent()
37 protoent entry; in print_protoent_by_name()
39 protoent *curr_entry; in print_protoent_by_name()
47 protoent entry; in print_protoent_by_num()
49 protoent *curr_entry; in print_protoent_by_num()
/dports/devel/tinygo/tinygo-0.14.1/lib/wasi-libc/libc-top-half/musl/src/network/
H A Dproto.c56 struct protoent *getprotoent(void) in getprotoent()
58 static struct protoent p; in getprotoent()
68 struct protoent *getprotobyname(const char *name) in getprotobyname()
70 struct protoent *p; in getprotobyname()
77 struct protoent *getprotobynumber(int num) in getprotobynumber()
79 struct protoent *p; in getprotobynumber()
/dports/lang/zig/zig-0.9.0/lib/libc/wasi/libc-top-half/musl/src/network/
H A Dproto.c56 struct protoent *getprotoent(void) in getprotoent()
58 static struct protoent p; in getprotoent()
68 struct protoent *getprotobyname(const char *name) in getprotobyname()
70 struct protoent *p; in getprotobyname()
77 struct protoent *getprotobynumber(int num) in getprotobynumber()
79 struct protoent *p; in getprotobynumber()
/dports/lang/zig/zig-0.9.0/lib/libc/musl/src/network/
H A Dproto.c56 struct protoent *getprotoent(void) in getprotoent()
58 static struct protoent p; in getprotoent()
68 struct protoent *getprotobyname(const char *name) in getprotobyname()
70 struct protoent *p; in getprotobyname()
77 struct protoent *getprotobynumber(int num) in getprotobynumber()
79 struct protoent *p; in getprotobynumber()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/wasi/libc-top-half/musl/src/network/
H A Dproto.c56 struct protoent *getprotoent(void) in getprotoent()
58 static struct protoent p; in getprotoent()
68 struct protoent *getprotobyname(const char *name) in getprotobyname()
70 struct protoent *p; in getprotobyname()
77 struct protoent *getprotobynumber(int num) in getprotobynumber()
79 struct protoent *p; in getprotobynumber()

12345678910>>...55