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

« back to all changes in this revision

Viewing changes to rutil/dns/DnsSrvRecord.hxx

  • 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
#ifndef RESIP_DNS_SRV_RECORD
 
2
#define RESIP_DNS_SRV_RECORD
 
3
 
 
4
#include "rutil/Data.hxx"
 
5
#include "rutil/Socket.hxx"
 
6
#include "rutil/BaseException.hxx"
 
7
#include "rutil/dns/DnsResourceRecord.hxx"
 
8
 
 
9
namespace resip
 
10
{
 
11
 
 
12
class Data;
 
13
class DnsResourceRecord;
 
14
class RROverlay;
 
15
 
 
16
class DnsSrvRecord : public DnsResourceRecord
 
17
{
 
18
   public:
 
19
      class SrvException : public BaseException
 
20
      {
 
21
         public:
 
22
            SrvException(const Data& msg, const Data& file, const int line)
 
23
               : BaseException(msg, file, line) 
 
24
            {
 
25
            }
 
26
            
 
27
            const char* name() const { return "SrvException"; }
 
28
      };
 
29
 
 
30
      DnsSrvRecord(const RROverlay&);
 
31
      ~DnsSrvRecord() {}
 
32
 
 
33
      // accessors.
 
34
      int priority() const { return mPriority; }
 
35
      int& priority() { return mPriority; }
 
36
      int weight() const { return mWeight; }
 
37
      int port() const { return mPort; }
 
38
      const Data& target() const { return mTarget; }
 
39
      const Data& name() const { return mName; }
 
40
      bool isSameValue(const Data& value) const;
 
41
      EncodeStream& dump(EncodeStream& strm) const;
 
42
      
 
43
   private:
 
44
      int mPriority;
 
45
      int mWeight;
 
46
      int mPort;
 
47
      Data mTarget; // domain name of the target host.
 
48
      Data mName;
 
49
};
 
50
 
 
51
}
 
52
 
 
53
 
 
54
#endif
 
55
 
 
56
/* ====================================================================
 
57
 * The Vovida Software License, Version 1.0 
 
58
 * 
 
59
 * Copyright (c) 2000-2005 Vovida Networks, Inc.  All rights reserved.
 
60
 * 
 
61
 * Redistribution and use in source and binary forms, with or without
 
62
 * modification, are permitted provided that the following conditions
 
63
 * are met:
 
64
 * 
 
65
 * 1. Redistributions of source code must retain the above copyright
 
66
 *    notice, this list of conditions and the following disclaimer.
 
67
 * 
 
68
 * 2. Redistributions in binary form must reproduce the above copyright
 
69
 *    notice, this list of conditions and the following disclaimer in
 
70
 *    the documentation and/or other materials provided with the
 
71
 *    distribution.
 
72
 * 
 
73
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
 
74
 *    and "Vovida Open Communication Application Library (VOCAL)" must
 
75
 *    not be used to endorse or promote products derived from this
 
76
 *    software without prior written permission. For written
 
77
 *    permission, please contact vocal@vovida.org.
 
78
 *
 
79
 * 4. Products derived from this software may not be called "VOCAL", nor
 
80
 *    may "VOCAL" appear in their name, without prior written
 
81
 *    permission of Vovida Networks, Inc.
 
82
 * 
 
83
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
 
84
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
85
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
 
86
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
 
87
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
 
88
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
 
89
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
90
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
91
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
92
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
93
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 
94
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 
95
 * DAMAGE.
 
96
 * 
 
97
 * ====================================================================
 
98
 * 
 
99
 * This software consists of voluntary contributions made by Vovida
 
100
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
 
101
 * Inc.  For more information on Vovida Networks, Inc., please see
 
102
 * <http://www.vovida.org/>.
 
103
 *
 
104
 */