VOIP C ++ Programming

I want to write a program to create a VOIP application for my project last year. This time I spend my time to understand how SIP works, and then I need to implement it in my project. As far as I know, the protocol requirement for creating this project is:

  • UDP
  • RTP

As for my project, I don't need to write complex coding. I just need to provide a server that can be used as a bridge for client interaction. So, are there any resources that I can use for reference to start programming my project?

+3
source share
4 answers

It might be useful to look at:

+4
+4

OpenSipStack is not bad, it is 100% C ++.

The project also contains a library for creating clients using ATL.

+3
source

Take a look at OPAL . It allows you to write applications that will support SIP, H.323 and IAX2.

+3
source

Source: https://habr.com/ru/post/1794664/


All Articles