1 |
derek |
3179 |
#if !defined(RESIP_REDIRECTHANDLER_HXX) |
2 |
|
|
#define RESIP_REDIRECTHANDLER_HXX |
3 |
|
|
|
4 |
|
|
|
5 |
|
|
namespace resip |
6 |
|
|
{ |
7 |
|
|
|
8 |
|
|
class SipMessage; |
9 |
|
|
class NameAddr; |
10 |
|
|
|
11 |
|
|
class RedirectHandler |
12 |
|
|
{ |
13 |
|
|
public: |
14 |
greg |
4768 |
virtual ~RedirectHandler() {} |
15 |
|
|
|
16 |
derek |
3179 |
//3xx that isn't 380 or 305 has been received |
17 |
|
|
virtual void onRedirectReceived(AppDialogSetHandle, const SipMessage& response)=0; |
18 |
|
|
|
19 |
|
|
//return true if this target is acceptable |
20 |
|
|
virtual bool onTryingNextTarget(AppDialogSetHandle, const SipMessage& request)=0; |
21 |
|
|
}; |
22 |
|
|
|
23 |
|
|
|
24 |
|
|
} |
25 |
|
|
|
26 |
|
|
#endif |
27 |
jason |
4010 |
|
28 |
|
|
/* ==================================================================== |
29 |
|
|
* The Vovida Software License, Version 1.0 |
30 |
|
|
* |
31 |
|
|
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
32 |
|
|
* |
33 |
|
|
* Redistribution and use in source and binary forms, with or without |
34 |
|
|
* modification, are permitted provided that the following conditions |
35 |
|
|
* are met: |
36 |
|
|
* |
37 |
|
|
* 1. Redistributions of source code must retain the above copyright |
38 |
|
|
* notice, this list of conditions and the following disclaimer. |
39 |
|
|
* |
40 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright |
41 |
|
|
* notice, this list of conditions and the following disclaimer in |
42 |
|
|
* the documentation and/or other materials provided with the |
43 |
|
|
* distribution. |
44 |
|
|
* |
45 |
|
|
* 3. The names "VOCAL", "Vovida Open Communication Application Library", |
46 |
|
|
* and "Vovida Open Communication Application Library (VOCAL)" must |
47 |
|
|
* not be used to endorse or promote products derived from this |
48 |
|
|
* software without prior written permission. For written |
49 |
|
|
* permission, please contact vocal@vovida.org. |
50 |
|
|
* |
51 |
|
|
* 4. Products derived from this software may not be called "VOCAL", nor |
52 |
|
|
* may "VOCAL" appear in their name, without prior written |
53 |
|
|
* permission of Vovida Networks, Inc. |
54 |
|
|
* |
55 |
|
|
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
56 |
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
57 |
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
58 |
|
|
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
59 |
|
|
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
60 |
|
|
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
61 |
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
62 |
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
63 |
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
64 |
|
|
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
65 |
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
66 |
|
|
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
67 |
|
|
* DAMAGE. |
68 |
|
|
* |
69 |
|
|
* ==================================================================== |
70 |
|
|
* |
71 |
|
|
* This software consists of voluntary contributions made by Vovida |
72 |
|
|
* Networks, Inc. and many individuals on behalf of Vovida Networks, |
73 |
|
|
* Inc. For more information on Vovida Networks, Inc., please see |
74 |
|
|
* <http://www.vovida.org/>. |
75 |
|
|
* |
76 |
|
|
*/ |