SwitchX v0.1.4 SwitchX.Connection.Inbound View Source

Provides an abstraction to a FreeSWITCH inbound connection

Inbound mode means you run your applications as clients, and connect to the FreeSWITCH server to invoke commands and control FreeSWITCH.

Link to this section Summary

Functions

Starts a new inbond connection

Link to this section Functions

Starts a new inbond connection.

Returns {:ok, Pid}

Examples

iex> paramaters = [
  host: "127.0.0.1",
  port: 8021,
]

iex> SwitchX.Connection.Inbound.start_link(paramaters)
{:ok, connection_pid}