/external/dropbear/ |
x11fwd.h | 32 int x11req(struct ChanSess * chansess); 33 void x11setauth(struct ChanSess *chansess); 34 void x11cleanup(struct ChanSess *chansess);
|
agentfwd.h | 32 int agentreq(struct ChanSess * chansess); 33 void agentsetauth(struct ChanSess *chansess); 34 void agentcleanup(struct ChanSess * chansess); 35 void agentset(struct ChanSess *chansess);
|
svr-x11fwd.c | 46 int x11req(struct ChanSess * chansess) { 51 if (chansess->x11listener != NULL) { 55 chansess->x11singleconn = buf_getbool(ses.payload); 56 chansess->x11authprot = buf_getstring(ses.payload, NULL); 57 chansess->x11authcookie = buf_getstring(ses.payload, NULL); 58 chansess->x11screennum = buf_getint(ses.payload); 67 chansess->x11port = bindport(fd); 68 if (chansess->x11port < 0) { 83 chansess->x11listener = new_listener( &fd, 1, 0, chansess, x11accept, NULL) 107 struct ChanSess * chansess = (struct ChanSess *)(listener->typedata); local [all...] |
svr-agentfwd.c | 46 static int bindagent(int fd, struct ChanSess * chansess); 51 int agentreq(struct ChanSess * chansess) { 55 if (chansess->agentlistener != NULL) { 66 if (bindagent(fd, chansess) == DROPBEAR_FAILURE) { 79 chansess->agentlistener = new_listener( &fd, 1, 0, chansess, 82 if (chansess->agentlistener == NULL) { 90 agentcleanup(chansess); [all...] |
svr-chansession.c | 43 static int sessioncommand(struct Channel *channel, struct ChanSess *chansess, 45 static int sessionpty(struct ChanSess * chansess); 46 static int sessionsignal(struct ChanSess *chansess); 47 static int noptycommand(struct Channel *channel, struct ChanSess *chansess); 48 static int ptycommand(struct Channel *channel, struct ChanSess *chansess); 69 struct ChanSess *chansess = (struct ChanSess*)channel->typedata; local 147 struct ChanSess *chansess = (struct ChanSess*)channel->typedata; local 218 struct ChanSess *chansess; local 255 struct ChanSess *chansess; local 316 struct ChanSess *chansess; local [all...] |
chansession.h | 40 struct ChanSess { 72 struct ChanSess * chansess; member in struct:ChildPid
|