[Sofia-sip-devel] working with multiple-ip-addresses

2007-02-25 Thread adi yoresh
We want to implement application that uses multiple IP addresses for sending and receiving SIP messages. Is it possible to define nta_agent or nua_agent object that holds number of sockets on different addresses? If not, what is the simplest way for implementing this requirement? ---

Re: [Sofia-sip-devel] Server code to handle Publish

2007-02-25 Thread Martti Mela
Hey, You need to define application_t and oper_t structures based on your requirements. The simplest case is to define these as typedef struct { nua_t *nua; } application_t; typedef struct { application_t *app; nua_handle_t *handle; } oper_t; For real life implementations please ta