Re: [Sofia-sip-devel] Building sofia-sip with mingw

2009-03-11 Thread Jonas Jalminger
Dear Filippo, Thank you for your reply. I have also done some more work on this since the last post. I used the release tarball instead. I can definately confirm 3, 4 and 7. The error for no 4 only appeared on my XP machine and not on my Vista machine but this might be due to different

Re: [Sofia-sip-devel] Building sofia-sip with mingw

2009-03-11 Thread Jonas Jalminger
Dear Filippo, You really hit the head on the nail, as we say in Sweden when you manage to solve something. It seems like your extern patch was what was nedded to make sofia sip work on mingw, at least for me. Many dear thanks Filippo. /Jonas Jonas Jalminger skrev: Dear Filippo, Thank you

[Sofia-sip-devel] Duplicate sip_t structure cont.

2009-03-11 Thread techsgin
Hi all Thanks in advance We are trying to copy the sip_t structure from within the nua callback. We saw this answer in the mailing list: . You are looking for msg_dup(), it will create an another msg_t and sip_t inside it. . But we crash when we try to: sip_t* lCopy =

Re: [Sofia-sip-devel] Duplicate sip_t structure cont.

2009-03-11 Thread techsgin
Hi I found how to do that. msg_t* lMsgCopy = msg_dup(nua_current_request(nua)); sip_t* lSipCopy = sip_object(lMsg); :-) _ From: techsgin [mailto:techs...@gmail.com] Sent: Wednesday, March 11, 2009 11:42 AM To: 'sofia-sip-devel@lists.sourceforge.net' Subject: Duplicate