SipConfiguration Constructor |
Sip Configuration Constructor
Namespace:
CallFlowFramework.TelephonyConfigurations
Assembly:
CallFlowFramework (in CallFlowFramework.dll) Version: 1.1.0.355 (1.1.0.355)
Syntaxpublic SipConfiguration(
string line_id,
string auth_username,
string password,
string domain,
string proxy,
string stun_host = null,
bool use_stun = false
)
public:
SipConfiguration(
String^ line_id,
String^ auth_username,
String^ password,
String^ domain,
String^ proxy,
String^ stun_host = nullptr,
bool use_stun = false
)
Parameters
- line_id
- Type: SystemString
The ID of the line that the graph will register (if a Register action is present) - auth_username
- Type: SystemString
Used for authentication performed by the SIP stack - password
- Type: SystemString
The password that is used for authentication - domain
- Type: SystemString
DNS or IP address of the registrar - proxy
- Type: SystemString
DNS or IP address of an outbound proxy. If not proxy is in use, leave unassigned. - stun_host (Optional)
- Type: SystemString
Used for NAT traversal - use_stun (Optional)
- Type: SystemBoolean
If false, the value of StunServerHost is ignored
See Also