Skip to content
Snippets Groups Projects
Commit ad7a57b5 authored by rswindell's avatar rswindell
Browse files

Added support for ^U and ^P commands while remote spying on a node.

parent 1658b50e
No related branches found
No related tags found
No related merge requests found
...@@ -370,6 +370,15 @@ int sbbs_t::exec_function(csi_t *csi) ...@@ -370,6 +370,15 @@ int sbbs_t::exec_function(csi_t *csi)
} }
continue; continue;
} }
if(ch==16) { /* Ctrl-P Private node-node comm */
nodesync(); /* read any waiting messages */
nodemsg(); /* send a message */
continue;
}
if(ch==21) { /* Ctrl-U Users online */
whos_online(true); /* list users */
continue;
}
if(node_inbuf[i-1]!=NULL) if(node_inbuf[i-1]!=NULL)
RingBufWrite(node_inbuf[i-1],(uchar*)&ch,1); RingBufWrite(node_inbuf[i-1],(uchar*)&ch,1);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment