| Home | All functions | Legacy functions | Categories |
Prototype: vuNetSetProxy(*CSTRING InProxyHost, LONG InProxyPort), SIGNED, PROC, PASCAL, RAW, NAME(‘vuNetSetProxy’)
Sets the proxy host and proxy port used by vuMailKit network operations.
| Parameter | Type | Description | |—|—|—| | InProxyHost | *CSTRING | Proxy server host name or IP. | | InProxyPort | LONG | Proxy server port number. |
| Value | Meaning | |—|—| | 1 | Success. |
rc LONG
server CSTRING(260)
port LONG
server = 'proxy.example.com'
port = 8080
rc = vuNetSetProxy(server, port)
IF rc <> 1
MESSAGE('vuNetSetProxy failed: ' & rc)
END
| Home | All functions | Legacy functions | Categories |