devtls: implement "hangup" ctl message
This makes devtls connection directories compatible to hangup function (see dial(2)).
This commit is contained in:
parent
bb2357de0c
commit
72d08816ab
1 changed files with 5 additions and 2 deletions
|
@ -1751,10 +1751,10 @@ tlswrite(Chan *c, void *a, long n, vlong off)
|
||||||
}else if(strcmp(cb->f[0], "alert") == 0){
|
}else if(strcmp(cb->f[0], "alert") == 0){
|
||||||
if(cb->nf != 2)
|
if(cb->nf != 2)
|
||||||
error("usage: alert n");
|
error("usage: alert n");
|
||||||
|
m = strtol(cb->f[1], nil, 0);
|
||||||
|
Hangup:
|
||||||
if(tr->c == nil)
|
if(tr->c == nil)
|
||||||
error("must set fd before sending alerts");
|
error("must set fd before sending alerts");
|
||||||
m = strtol(cb->f[1], nil, 0);
|
|
||||||
|
|
||||||
qunlock(&tr->in.seclock);
|
qunlock(&tr->in.seclock);
|
||||||
qunlock(&tr->out.seclock);
|
qunlock(&tr->out.seclock);
|
||||||
poperror();
|
poperror();
|
||||||
|
@ -1767,6 +1767,9 @@ tlswrite(Chan *c, void *a, long n, vlong off)
|
||||||
tlsclosed(tr, SLClose);
|
tlsclosed(tr, SLClose);
|
||||||
|
|
||||||
return n;
|
return n;
|
||||||
|
} else if(strcmp(cb->f[0], "hangup") == 0){
|
||||||
|
m = ECloseNotify;
|
||||||
|
goto Hangup;
|
||||||
} else if(strcmp(cb->f[0], "debug") == 0){
|
} else if(strcmp(cb->f[0], "debug") == 0){
|
||||||
if(cb->nf == 2){
|
if(cb->nf == 2){
|
||||||
if(strcmp(cb->f[1], "on") == 0)
|
if(strcmp(cb->f[1], "on") == 0)
|
||||||
|
|
Loading…
Reference in a new issue