Create a request to change the port that data is sent to.
| 45 | |
| 46 | // Create a request to change the port that data is sent to. |
| 47 | static const control_request change( |
| 48 | unsigned short old_port, unsigned short new_port) |
| 49 | { |
| 50 | return control_request(old_port, new_port); |
| 51 | } |
| 52 | |
| 53 | // Get the old port. Returns 0 for start requests. |
| 54 | unsigned short old_port() const |
nothing calls this directly
no test coverage detected