00001 /* ***** BEGIN LICENSE BLOCK ***** 00002 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00003 * 00004 * The contents of this file are subject to the Mozilla Public License Version 00005 * 1.1 (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * http://www.mozilla.org/MPL/ 00008 * 00009 * Software distributed under the License is distributed on an "AS IS" basis, 00010 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00011 * for the specific language governing rights and limitations under the 00012 * License. 00013 * 00014 * The Original Code is the Mozilla SIP client project. 00015 * 00016 * The Initial Developer of the Original Code is 8x8 Inc. 00017 * Portions created by the Initial Developer are Copyright (C) 2005 00018 * the Initial Developer. All Rights Reserved. 00019 * 00020 * Contributor(s): 00021 * Alex Fritze <alex@croczilla.com> (original author) 00022 * 00023 * Alternatively, the contents of this file may be used under the terms of 00024 * either the GNU General Public License Version 2 or later (the "GPL"), or 00025 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00026 * in which case the provisions of the GPL or the LGPL are applicable instead 00027 * of those above. If you wish to allow use of your version of this file only 00028 * under the terms of either the GPL or the LGPL, and not to allow others to 00029 * use your version of this file under the terms of the MPL, indicate your 00030 * decision by deleting the provisions above and replace them with the notice 00031 * and other provisions required by the GPL or the LGPL. If you do not delete 00032 * the provisions above, a recipient may use your version of this file under 00033 * the terms of any one of the MPL, the GPL or the LGPL. 00034 * 00035 * ***** END LICENSE BLOCK ***** */ 00036 00037 #include "nsISupports.idl" 00038 00039 interface zapISipDialogListener; 00040 interface zapISipRequestHandler; 00041 interface zapISipNonInviteRC; 00042 interface zapISipInviteRC; 00043 interface zapISipURI; 00044 interface zapISipAddress; 00045 00049 [scriptable, uuid(a3995457-2090-490b-a9dc-b73dfbcac3dd)] 00050 interface zapISipDialog : nsISupports 00051 { 00052 attribute zapISipDialogListener listener; 00053 attribute zapISipRequestHandler requestHandler; 00054 00058 void terminateDialog(); 00059 00066 zapISipNonInviteRC createNonInviteRequestClient(in ACString method); 00067 00068 zapISipInviteRC createInviteRequestClient(); 00069 00073 readonly attribute ACString dialogID; 00074 00078 readonly attribute ACString callID; 00079 00087 readonly attribute ACString localTag; 00088 00096 readonly attribute ACString remoteTag; 00097 00106 readonly attribute unsigned long localSequenceNumber; 00107 00117 readonly attribute unsigned long remoteSequenceNumber; 00118 00122 readonly attribute zapISipURI localURI; 00123 00127 readonly attribute zapISipURI remoteURI; 00128 00132 readonly attribute zapISipURI remoteTarget; 00133 00137 readonly attribute boolean secure; 00138 00142 void getRouteSet(out unsigned long count, 00143 [array, retval, size_is(count)] out 00144 zapISipAddress routeset); 00145 00149 readonly attribute ACString dialogState; 00150 00156 const unsigned long UNINITIALIZED_SEQUENCE_NUMBER = 0xFFFFFFFF; 00157 };
1.4.4