~ubuntu-branches/ubuntu/saucy/resiprocate/saucy-proposed

« back to all changes in this revision

Viewing changes to resip/dum/SubscriptionState.cxx

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2012-05-17 19:29:59 UTC
  • Revision ID: package-import@ubuntu.com-20120517192959-vv00m77isztdy64q
Tags: upstream-1.8.2
ImportĀ upstreamĀ versionĀ 1.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "resip/dum/SubscriptionState.hxx"
 
2
#include "rutil/Data.hxx"
 
3
 
 
4
using namespace resip;
 
5
 
 
6
Data SubscriptionStates[] = 
 
7
{
 
8
   "invalid",
 
9
   "init",
 
10
   "pending",
 
11
   "active",
 
12
   "waiting",
 
13
   "terminated",
 
14
   "unknown"
 
15
};
 
16
 
 
17
Data TerminateReasons[] = 
 
18
{
 
19
   "deactivated",
 
20
   "probation",
 
21
   "rejected",
 
22
   "timeout",
 
23
   "giveup",
 
24
   "noresource",
 
25
   "invariant",
 
26
   "unknown"
 
27
};
 
28
 
 
29
const Data&
 
30
resip::getSubscriptionStateString(SubscriptionState state) 
 
31
{
 
32
   if (state > Unknown ||  state < Invalid) 
 
33
   {
 
34
      state = Unknown;
 
35
   }
 
36
   return SubscriptionStates[state];
 
37
}
 
38
 
 
39
const Data&
 
40
resip::getTerminateReasonString(TerminateReason state) 
 
41
{
 
42
//    if (state > Unknown ||  state < Deactivated) 
 
43
//    {
 
44
//       state = Unknown;
 
45
//    }
 
46
   return TerminateReasons[state];
 
47
}
 
48
 
 
49
/* ====================================================================
 
50
 * The Vovida Software License, Version 1.0 
 
51
 * 
 
52
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
 
53
 * 
 
54
 * Redistribution and use in source and binary forms, with or without
 
55
 * modification, are permitted provided that the following conditions
 
56
 * are met:
 
57
 * 
 
58
 * 1. Redistributions of source code must retain the above copyright
 
59
 *    notice, this list of conditions and the following disclaimer.
 
60
 * 
 
61
 * 2. Redistributions in binary form must reproduce the above copyright
 
62
 *    notice, this list of conditions and the following disclaimer in
 
63
 *    the documentation and/or other materials provided with the
 
64
 *    distribution.
 
65
 * 
 
66
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
 
67
 *    and "Vovida Open Communication Application Library (VOCAL)" must
 
68
 *    not be used to endorse or promote products derived from this
 
69
 *    software without prior written permission. For written
 
70
 *    permission, please contact vocal@vovida.org.
 
71
 *
 
72
 * 4. Products derived from this software may not be called "VOCAL", nor
 
73
 *    may "VOCAL" appear in their name, without prior written
 
74
 *    permission of Vovida Networks, Inc.
 
75
 * 
 
76
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
 
77
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
78
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
 
79
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
 
80
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
 
81
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
 
82
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
83
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
84
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
85
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
86
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 
87
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 
88
 * DAMAGE.
 
89
 * 
 
90
 * ====================================================================
 
91
 * 
 
92
 * This software consists of voluntary contributions made by Vovida
 
93
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
 
94
 * Inc.  For more information on Vovida Networks, Inc., please see
 
95
 * <http://www.vovida.org/>.
 
96
 *
 
97
 */