-
Hello, I m newbie with sip and have a question.
For what i understand the documentation part for my use case is "SIP Message Rendering" and i guess "SIP Message Parsing" to be sure everything run smothly (aka : following protocol) ? Thx for your time |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
php-sip is a SIP message parsing/rendering library, so its purpose is to decode raw SIP messages (plain text) into structured objects and vice-versa. While parsing/rendering is definitely required in order to place and receive calls, there's more to it, at the very least handling the networking I/O and the messages within a SIP dialog; this is outside of the scope of this library and effectively describes a SIP user agent. You might wish to check eqivo, it's an API layer wrapped around FreeSWITCH which might streamline your telephony integration. |
Beta Was this translation helpful? Give feedback.
php-sip is a SIP message parsing/rendering library, so its purpose is to decode raw SIP messages (plain text) into structured objects and vice-versa.
While parsing/rendering is definitely required in order to place and receive calls, there's more to it, at the very least handling the networking I/O and the messages within a SIP dialog; this is outside of the scope of this library and effectively describes a SIP user agent.
You might wish to check eqivo, it's an API layer wrapped around FreeSWITCH which might streamline your telephony integration.