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

« back to all changes in this revision

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