Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PJSIP server development

When using pjsip technology to develop a server, the official web site is a bit difficult to use when looking for a way to develop a server.

It has an introduction on how to develop a client application with the library, but not how to implement a server.

Any one direct me to some reference documentation or blob posts or other web site that can help show me how to create a pjsip based server?

like image 631
rocksing Avatar asked Sep 01 '25 02:09

rocksing


1 Answers

You can find a sample SIP proxy implementation inside the PJSIP source code: http://trac.pjsip.org/repos/browser/pjproject/trunk/pjsip-apps/src/samples/stateful_proxy.c and http://trac.pjsip.org/repos/browser/pjproject/trunk/pjsip-apps/src/samples/stateless_proxy.c

like image 51
saghul Avatar answered Sep 02 '25 20:09

saghul