IsRunningPort

Check if a proxy is currently running on the given port.

int IsRunningPort(int port)

Parameters

  • port: Port to check.

Return Value

  • int: 1 if running, 0 if not.

Example

// example

int running = IsRunningPort(10001);

Last updated

Was this helpful?