| 1233 | } |
| 1234 | |
| 1235 | static int Tcl_ops_send(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1236 | { |
| 1237 | wrapper->resetCommandLine(argc, 1, argv); |
| 1238 | |
| 1239 | if (OPS_send() < 0) return TCL_ERROR; |
| 1240 | |
| 1241 | return TCL_OK; |
| 1242 | } |
| 1243 | |
| 1244 | static int Tcl_ops_recv(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1245 | { |
nothing calls this directly
no test coverage detected