Create a request to start sending data to a given port.
| 33 | |
| 34 | // Create a request to start sending data to a given port. |
| 35 | static const control_request start(unsigned short port) |
| 36 | { |
| 37 | return control_request(0, port); |
| 38 | } |
| 39 | |
| 40 | // Create a request to stop sending data to a given port. |
| 41 | static const control_request stop(unsigned short port) |
nothing calls this directly
no test coverage detected