Re: [Sofia-sip-devel] Does sofia support DECLINE?

2007-03-19 Thread Pekka Pessi
2007/3/8, Sluschny, Thomas [EMAIL PROTECTED]: i use freeswitch with sofia and get a DECLINE from a SIP device after i sent an INVITE to it: send 995 bytes to udp/[192.168.1.1]:5060 at 14:54:35.476608: INVITE

Re: [Sofia-sip-devel] problem while installing sofia-sip library

2007-03-19 Thread Pekka Pessi
2007/3/10, Noorulla Mohammad [EMAIL PROTECTED]: i'm trying to install sofia-sip library on linux platform. i had downloaded the library from http://sourceforge.net/project/showfiles.php?group_id=143636 and chossen sofia-sip version 1.12.5. In the readme file these are the steps mentioned

Re: [Sofia-sip-devel] INVITE without SDP: No session set by user

2007-03-19 Thread Pekka Pessi
2007/3/13, Chung Pak Lai [EMAIL PROTECTED]: The problem I am having is that the second user SDP in the 200OK (INVITE with SDP) doesn't overwrite the SDP message in the first 200OK (INVITE without SDP). Why it should overwrite it? If you want to use different SDP later, you can set it with

Re: [Sofia-sip-devel] remove Authorization header from re-REGISTER

2007-03-19 Thread Jan Van den bosch
Hi again, So far, I've tried this: nua_set_params(nua, SIPTAG_AUTHORIZATION(NULL), TAG_END()); nua_set_hparams(nh, SIPTAG_AUTHORIZATION(NULL), TAG_END()); both in my nua_r_register() callback, and this: nua_unregister(op-op_handle, SIPTAG_AUTHORIZATION(NULL), TAG_NULL()); in my unregister

Re: [Sofia-sip-devel] Authentication state machinery

2007-03-19 Thread mikhail.zabaluev
Hi, -Original Message- From: ext Pekka Pessi [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 2:09 PM To: Zabaluev Mikhail (Nokia-M/Helsinki) Cc: sofia-sip-devel@lists.sourceforge.net Subject: Re: [Sofia-sip-devel] Authentication state machinery May it be that nua_authenticate()

[Sofia-sip-devel] Sample server (registrar) code

2007-03-19 Thread nnp
Hey, I'm currently writing an application for fuzz testing SIP compatible clients (soft phones, hard phones etc) and looking for a simple way to deal with certain things I don't want to test in this app. One of these things is registration. I want to allow the the client to register with the

[Sofia-sip-devel] Fwd: Sample server (registrar) code

2007-03-19 Thread Diego Betancor
It is a little example..Hope it helps Server Verifying Authentication Tutorial for a server using nta and auth modules. typedef struct application{ /* other data as needed ... including home, root, and default leg etc*/ auth_mod_t *autorizacion; } application ; int init(){ /* all

Re: [Sofia-sip-devel] Fwd: Sample server (registrar) code

2007-03-19 Thread nnp
Hey, thanks for the response. I am still unclear on one thing though. Where is the entry point to the program? Also, how is process_call() indicated as the correct callback function to use. e.g something similar to nua_create when using the nua library? Thanks, nnp On 3/19/07, Diego Betancor