Re: [Sofia-sip-devel] sofia on sparc

2007-09-17 Thread Martin Drasar
-m64 -g -O0 Thanks for your time. Martin -- Martin Drasar, Developer / Analyst OptimSys, s.r.o. [EMAIL PROTECTED] Tel: +420 541 143 065 Fax: +420 541 143 066 http://www.optimsys.cz TEST NUA-1.0: test API TEST NUA-1.0: PASSED TEST NUA-1.1: PARAMETERS TEST NUA-1.1: PASSED 000.000 a.nua(1006288b0

Re: [Sofia-sip-devel] sofia on sparc

2007-09-17 Thread Martin Drasar
Martin Drasar napsal(a): Pekka Pessi napsal(a): 2007/9/11, Martin Drašar [EMAIL PROTECTED]: I would like to ask you if someone has tested (and made working) sofia on Solaris 9 / 64bit sparc. I have problem with nua_i_invite event. *sip-sip_content_type has c_type = 0x10069f7b9

Re: [Sofia-sip-devel] sofia on sparc

2007-09-18 Thread Martin Drasar
Martin Drasar napsal(a): Martin Drasar napsal(a): Pekka Pessi napsal(a): 2007/9/11, Martin Drašar [EMAIL PROTECTED]: I would like to ask you if someone has tested (and made working) sofia on Solaris 9 / 64bit sparc. I have problem with nua_i_invite event. *sip

[Sofia-sip-devel] Ending call without BYE

2007-11-07 Thread Martin Drasar
Martin -- Martin Drasar, Developer / Analyst OptimSys, s.r.o. [EMAIL PROTECTED] Tel: +420 541 143 065 Fax: +420 541 143 066 http://www.optimsys.cz - This SF.net email is sponsored by: Splunk Inc. Still grepping through log

[Sofia-sip-devel] proxy authentication failed when redirecting

2008-01-18 Thread Martin Drasar
ACK Max-Forwards: 69 User-Agent: SJphone/1.65.377a (SJ Labs) Content-Length: 0 -- Martin Drasar, Developer / Analyst OptimSys, s.r.o. [EMAIL PROTECTED] Tel: +420 541 143 065 Fax: +420 541 143 066 http://www.optimsys.cz

Re: [Sofia-sip-devel] proxy authentication failed when redirecting

2008-01-23 Thread Martin Drasar
Pekka Pessi napsal(a): 2008/1/18, Martin Drasar [EMAIL PROTECTED]: I have a problem with proxy authentication. My user agent registers itself with proxy without a problem. However when I want it to redirect a call, the following happens: 1) REFER is sent to proxy 2) Proxy answers

Re: [Sofia-sip-devel] proxy authentication failed when redirecting

2008-01-23 Thread Martin Drasar
Pekka Pessi napsal(a): 2008/1/23, Martin Drasar [EMAIL PROTECTED]: 1) I have modified the proxy to send some realm and it didn't help. 2) reINVITE I'm not sure how the reinvite works so I have just tried this piece of code: nua_invite(nh, TAG_END()); Problem is that the invite is sent

Re: [Sofia-sip-devel] proxy authentication failed when redirecting

2008-01-23 Thread Martin Drasar
Pekka Pessi napsal(a): 2008/1/23, Martin Drasar [EMAIL PROTECTED]: Could you have a peek in 407 response, is the sip-sip_proxy_authenticate non-NULL? Does nua call auc_challenge()? auc_challenge is called, but the first parameter (nh-nh_auth) is NULL. sip

[Sofia-sip-devel] how to signal DTMF?

2008-01-26 Thread Martin Drasar
Hi everyone. Can you tell me how can I send DTMF via SIP INFO? I tried to use nua_info(), but couldn't find any tag that would allow me to place 'Signal=1' into header. Thanks Martin - This SF.net email is sponsored by:

[Sofia-sip-devel] Problem registering with proxy on SPARC

2008-03-31 Thread Martin Drasar
a bit lost in the code :-) Thanks, Martin -- Martin Drasar, Developer / Analyst OptimSys, s.r.o. [EMAIL PROTECTED] Tel: +420 541 143 065 Fax: +420 541 143 066 http://www.optimsys.cz - Check out the new SourceForge.net

Re: [Sofia-sip-devel] su_pthread_port_clone_main does not finish before unloading the library

2008-05-21 Thread Martin Drasar
Thanks Mike, that was exactly the problem. Now I am waiting for 200 response and everything works just fine. Also thanks to Pekka for thread stuff explanation. Regards Martin On May 19, 2008, at 11:23 AM, Martin Drasar wrote: Hello everyone, I have two problems related to shutting down

Re: [Sofia-sip-devel] [NEWBIE] How to print a SIP message

2009-12-07 Thread Martin Drasar
If you want to iterate through each header field in the message, you should start from msg_chain_head(msg) and then proceed in order, e.g., for (next = msg_chain_head(msg); *next; next = (*next)-sh_next) { sip_header_t *sh = (*next); msg_hclass_t const *hc = sh-sh_class; if

[Sofia-sip-devel] nua_respond and deallocated memory

2010-03-03 Thread Martin Drasar
) function? Should I allocate the data and free them when the conection is closed? [Not a big fan of this approach.] Or is there some event that is going to tell me - your structure is ready to be released? Or have I missed someting obvious? Thank you for your answer Regards Martin -- Martin Drasar

[Sofia-sip-devel] No nua_r_invite when resuming from hold

2010-03-08 Thread Martin Drasar
Hi everyone, I have a problem with sofia handling the reinvites when doing on hold. My on hold implemetnation should work like this. A B |--- INVITE --| | a=sendonly | | | | OK

Re: [Sofia-sip-devel] nua_respond and deallocated memory

2010-03-12 Thread Martin Drasar
On 3.3.2010 16:36, Jarod Neuner wrote: Calls to nua_respond, or any other method that sends or receives a response, should always be considered an async operation. A reasonable approach would be to use the memory home associated with that handle (nua_handle_home) to allocate the data - the

Re: [Sofia-sip-devel] No nua_r_invite when resuming from hold

2010-03-12 Thread Martin Drasar
Hello, the culprit was a deadlock in my code that got freed only after a call termination. The problem is solved now. Thanks to anybody who spent time reading / thinking about the previous mail. Regards Martin --

Re: [Sofia-sip-devel] nua_respond and deallocated memory

2010-03-12 Thread Martin Drasar
Dne 12.3.2010 17:50, Pekka Pessi napsal(a): 2010/3/12 Martin Drasar dra...@optimsys.cz: On 3.3.2010 16:36, Jarod Neuner wrote: Calls to nua_respond, or any other method that sends or receives a response, should always be considered an async operation. A reasonable approach would be to use

Re: [Sofia-sip-devel] how make video conference call

2010-08-10 Thread Martin Drasar
Dne 10.8.2010 10:28, peter hanshon napsal(a): hello please how can i make call(video conference) with sofia sip? thank you Hello Peter, sofia is a library for handling SIP signaling. It can help you to establish calls, negotiate codecs, etc. What it does not help you with is the media part

Re: [Sofia-sip-devel] how make video conference call

2010-08-10 Thread Martin Drasar
Dne 10.8.2010 11:10, peter hanshon napsal(a): Thank you sir for you response I have another problem, so i want to initialize a video streaming service (by VLC) by sending a message sip client(want to watch video) to server(server of video) when I use the following SDP but its not

Re: [Sofia-sip-devel] rtp sofiasip

2010-08-10 Thread Martin Drasar
Dne 10.8.2010 12:04, peter hanshon napsal(a): hello does sofia sip support and manage rtp because i make call but it haven't flow rtp thank you Dear God, Peter! Please read the mails I have sent you or at least some documentation. Sofia does not handle any rtp, it can only negotiate all

Re: [Sofia-sip-devel] call but no sound

2010-08-12 Thread Martin Drasar
Dne 11.8.2010 19:25, peter hanshon napsal(a): i make call with sofsipcli but there are no sound what is the problem You are doing your best to piss off anyone with even the slightest interest to help you. You have no chance of getting reasonable answer unless you learn to ask reasonably