System::getNetworkProxy

FMOD Studio API

Firelight Technologies FMOD Studio API

System::getNetworkProxy

Retrieves the URL of the proxy server used in internet streaming.

C++ Syntax

FMOD_RESULT System::getNetworkProxy(
  char *proxy,
  int proxylen
);

C Syntax

FMOD_RESULT FMOD_System_GetNetworkProxy(
  FMOD_SYSTEM *system,
  char *proxy,
  int proxylen
);

C# Syntax

RESULT System.getNetworkProxy(
  StringBuilder proxy,
  int proxylen
);

JavaScript Syntax

System.getNetworkProxy(
  proxy                            // writes value to proxy.val
);

Parameters

proxy
Address of a variable that receives the proxy server URL encoded in a UTF-8 string.
proxylen
Size of the buffer in bytes to receive the string.

Return Values

If the function succeeds then the return value is FMOD_OK.
If the function fails then the return value will be one of the values defined in the FMOD_RESULT enumeration.

Remarks

JavaScript only :

Note: For the "proxy" parameter, the maximum string length is 512.

See Also




Version 1.10.03 Built on Feb 1, 2018