OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:portcount
(Results
1 - 3
of
3
) sorted by null
/external/dropbear/
svr-runopts.c
112
svr_opts.
portcount
= 0;
234
if (svr_opts.
portcount
== 0) {
237
svr_opts.
portcount
= 1;
273
if (svr_opts.
portcount
< DROPBEAR_MAX_PORTS) {
279
svr_opts.ports[svr_opts.
portcount
] = strchr(myspec, ':');
281
if (svr_opts.ports[svr_opts.
portcount
] == NULL) {
283
svr_opts.ports[svr_opts.
portcount
] = myspec;
286
svr_opts.ports[svr_opts.
portcount
][0] = '\0';
287
svr_opts.ports[svr_opts.
portcount
]++;
288
svr_opts.addresses[svr_opts.
portcount
] = myspec
[
all
...]
runopts.h
55
/* ports is an array of the
portcount
listening ports */
57
unsigned int
portcount
;
member in struct:svr_runopts
svr-main.c
402
TRACE(("listensockets: %d to try\n", svr_opts.
portcount
))
404
for (i = 0; i < svr_opts.
portcount
; i++) {
Completed in 923 milliseconds