Mixe for Privacy and Anonymity in the Internet
CATargetInterface.hpp
Go to the documentation of this file.
1 /*
2 Copyright (c) 2000, The JAP-Team
3 All rights reserved.
4 Redistribution and use in source and binary forms, with or without modification,
5 are permitted provided that the following conditions are met:
6 
7  - Redistributions of source code must retain the above copyright notice,
8  this list of conditions and the following disclaimer.
9 
10  - Redistributions in binary form must reproduce the above copyright notice,
11  this list of conditions and the following disclaimer in the documentation and/or
12  other materials provided with the distribution.
13 
14  - Neither the name of the University of Technology Dresden, Germany nor the names of its contributors
15  may be used to endorse or promote products derived from this software without specific
16  prior written permission.
17 
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
20 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
21 AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS
22 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
27 */
28 
30  {
31  public:
33  {
34  set(target_t,net_t,p_addr);
35  }
36 
38  {
41  addr=NULL;
42  }
43 
44  SINT32 cloneInto(CATargetInterface& oTargetInterface) const
45  {
46  oTargetInterface.net_type=net_type;
47  oTargetInterface.target_type=target_type;
48  oTargetInterface.addr=addr->clone();
49  return E_SUCCESS;
50  }
51 
52  SINT32 set(TargetType target_t,NetworkType net_t,CASocketAddr* p_addr)
53  {
54  target_type=target_t;
55  net_type=net_t;
56  addr=p_addr;
57  return E_SUCCESS;
58  }
59 
61  {
62  return set(source.target_type,source.net_type,source.addr);
63  }
64 
66  {
67  return set(source->target_type,source->net_type,source->addr);
68  }
69 
71  {
72  return target_type;
73  }
74 
76  {
77  return addr;
78  }
79 
81  {
82  delete addr;
83  addr=NULL;
84  return E_SUCCESS;
85  }
86 
87  private:
91  };
signed int SINT32
Definition: basetypedefs.h:132
This is an abstract class for representing a socket address used in CASocket, CADatagramSocket and CA...
virtual CASocketAddr * clone() const =0
Creates a copy of the Address.
SINT32 set(CATargetInterface *source)
SINT32 set(TargetType target_t, NetworkType net_t, CASocketAddr *p_addr)
SINT32 cloneInto(CATargetInterface &oTargetInterface) const
SINT32 set(CATargetInterface &source)
CATargetInterface(TargetType target_t, NetworkType net_t, CASocketAddr *p_addr)
TargetType getTargetType() const
CASocketAddr * getAddr() const
const SINT32 E_SUCCESS
Definition: errorcodes.hpp:2
TargetType
Definition: typedefs.hpp:32
@ TARGET_UNKNOWN
Definition: typedefs.hpp:32
NetworkType
Definition: typedefs.hpp:30
@ UNKNOWN_NETWORKTYPE
Definition: typedefs.hpp:30