OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newfwd
(Results
1 - 2
of
2
) sorted by null
/external/dropbear/
cli-runopts.c
366
struct TCPFwdList*
newfwd
= NULL;
local
393
newfwd
= (struct TCPFwdList*)m_malloc(sizeof(struct TCPFwdList));
397
newfwd
->listenport = strtol(listenport, NULL, 10);
403
newfwd
->connectport = strtol(connectport, NULL, 10);
409
newfwd
->connectaddr = connectaddr;
411
if (
newfwd
->listenport > 65535) {
416
if (
newfwd
->connectport > 65535) {
421
newfwd
->next = *fwdlist;
422
*fwdlist =
newfwd
;
/external/openssh/
readconf.c
259
add_local_forward(Options *options, const Forward *
newfwd
)
264
if (
newfwd
->listen_port < IPPORT_RESERVED && original_real_uid != 0)
272
fwd->listen_host =
newfwd
->listen_host;
273
fwd->listen_port =
newfwd
->listen_port;
274
fwd->connect_host =
newfwd
->connect_host;
275
fwd->connect_port =
newfwd
->connect_port;
284
add_remote_forward(Options *options, const Forward *
newfwd
)
293
fwd->listen_host =
newfwd
->listen_host;
294
fwd->listen_port =
newfwd
->listen_port;
295
fwd->connect_host =
newfwd
->connect_host
[
all
...]
Completed in 287 milliseconds