示例#1
0
        private void OnCfwrOptReceived(string accId, string from_uri, CORESIP_CFWR_OPT_TYPE cfwr_options_type, string body, uint hresp)
        {
            _Logger.Debug("Recibido options call forward");

            Top.WorkingThread.Enqueue("OnCfwrOpt", delegate()
            {
                General.SafeLaunchEvent(CallForwardAsk, this, accId, from_uri, cfwr_options_type, body, hresp);
            });
        }
示例#2
0
        private void OnCfwrOptResponse(string accId, string dstUri, string callid, int st_code, CORESIP_CFWR_OPT_TYPE cfwr_options_type, string body)
        {
            _Logger.Debug("Recibido options call forward");

            Top.WorkingThread.Enqueue("OnCfwrOpt", delegate()
            {
                General.SafeLaunchEvent(CallForwardResp, this, accId, st_code, cfwr_options_type, body);
            });
        }