PDA

View Full Version : voip



kernel_panic
14th August 2007, 06:34
hello all.
i want to add voip to a chat application. the chat application has a server and a client. the server runs on one computer in a small network, which isn't connected to the internet. is it possible to make up a voip connection just under the clients or do i have to go over the server. what librarys do i need, and are there examples for small voip applications?

wysota
14th August 2007, 10:59
You don't need a server - you can make a peer to peer voip connection. If you want to make voip supporting app with Qt, remember that voip connection should be handled in asynchronous way or in a separate thread.

kernel_panic
14th August 2007, 11:24
which librarys should i use?

wysota
14th August 2007, 13:44
I don't know any.

elcuco
14th August 2007, 19:52
Google for KIAX, it implements the IAX2 protocol (sip is more common, but it's a mess to implement it)

wysota
15th August 2007, 02:14
SIP should be easily implementable using QHttp ;)

kernel_panic
15th August 2007, 06:47
example? im new on this area.