C# Класс SIPLibDriver.Program

Example program to demonstrate the use of the SIP library.
Показать файл Открыть проект

Открытые методы

Метод Описание
CreateStack ( SIPApp app, string username, string proxyIp = null, int proxyPort = -1 ) : SIPStack

Creates a SIP stack.

CreateTransport ( string listenIp, int listenPort ) : SIPLib.SIP.TransportInfo

Creates the actual transport - UDP is supported, TCP needs work.

Приватные методы

Метод Описание
Main ( string args ) : void

Defines the entry point of the application.

Описание методов

CreateStack() публичный статический Метод

Creates a SIP stack.
public static CreateStack ( SIPApp app, string username, string proxyIp = null, int proxyPort = -1 ) : SIPStack
app SIPApp The associated sip application.
username string The username representing this SIP endpoint.
proxyIp string The proxy ip if any.
proxyPort int The proxy port if any.
Результат SIPLib.SIP.SIPStack

CreateTransport() публичный статический Метод

Creates the actual transport - UDP is supported, TCP needs work.
public static CreateTransport ( string listenIp, int listenPort ) : SIPLib.SIP.TransportInfo
listenIp string The listen ip.
listenPort int The listen port.
Результат SIPLib.SIP.TransportInfo