Search Result

Collapse
3 results in 0.0032 seconds.
Keywords
Members
Tags
sip
  •  

  • davidraimosson
    started a topic SIP Python/C++ binding fails to compile

    SIP Python/C++ binding fails to compile

    Hi all!

    After successfully compiling a Python/C binding with SIP I wanted to do the same thing with Python/C++. For some reason this doesn't work.

    Here's the files:

    fib.cpp
    -----------------------------------------------
    Code:
    #include "fib.h"
    
    int fib1(int n)
    {
    	if (n <= 0) {
    		return 0;
    	} else if (n <= 2) {
    		return 1;
    ...
    See more | Go to post

  • ThomasKeruba
    started a topic Ways of SIP message manipulation

    Ways of SIP message manipulation

    Hi,

    My name is Thomas (21), I am student of computer engineering. Task at my school was to make a program that changing original SIP/SDP messages when using VoIP.

    The task was hard, I admit to find help on the internet. I found SIP SDK that do the same. Check out if you like:
    http://www.voip-sip-sdk.com/p_223-sip-sdp-message-manipulator-sample-voip.html

    Think that was great. But somehow I has to...
    See more | Go to post

  • Tim Davis
    started a topic How to Build a C# SIP SMS Example

    How to Build a C# SIP SMS Example

    SIP SMS Example

    The importance of SIP messages is great because often they are used for various purposes. They are for establishing phone calls, making complementary actions etc. Today when we live in a rushing world fast and efficient communication is more important than ever. SMS technology offers one of the quickests ways to send information to each other. This way you can be absolutely sure that your message will be received by...
    See more | Go to post
Working...