From ad7a57b5dc1ddbf2ecb66a824c0510d7b1211eac Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Mon, 6 Nov 2000 23:06:50 +0000 Subject: [PATCH] Added support for ^U and ^P commands while remote spying on a node. --- src/sbbs3/execfunc.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/sbbs3/execfunc.cpp b/src/sbbs3/execfunc.cpp index 8dc4c690a4..d5142c44c9 100644 --- a/src/sbbs3/execfunc.cpp +++ b/src/sbbs3/execfunc.cpp @@ -370,6 +370,15 @@ int sbbs_t::exec_function(csi_t *csi) } 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) RingBufWrite(node_inbuf[i-1],(uchar*)&ch,1); } -- GitLab