1 | /****************************************************************************/ |
---|
2 | /* $Id$ */ |
---|
3 | /* */ |
---|
4 | /* (c) 2009 Universite de Rennes 1 */ |
---|
5 | /* */ |
---|
6 | /* Contributors: */ |
---|
7 | /* - Anthony BAIRE */ |
---|
8 | /* */ |
---|
9 | /* Contact address: <t3devkit@irisa.fr> */ |
---|
10 | /* */ |
---|
11 | /* */ |
---|
12 | /* This file is part of application examples provided along with T3DevKit, */ |
---|
13 | /* a free toolkit for building TTCN-3 tests. */ |
---|
14 | /* */ |
---|
15 | /* This software is governed by the CeCILL-B license under French law and */ |
---|
16 | /* abiding by the rules of distribution of free software. You can use, */ |
---|
17 | /* modify and/or redistribute the software under the terms of the CeCILL-B */ |
---|
18 | /* license as circulated by CEA, CNRS and INRIA at the following URL */ |
---|
19 | /* "http://www.cecill.info". */ |
---|
20 | /* */ |
---|
21 | /* As a counterpart to the access to the source code and rights to copy, */ |
---|
22 | /* modify and redistribute granted by the license, users are provided only */ |
---|
23 | /* with a limited warranty and the software's author, the holder of the */ |
---|
24 | /* economic rights, and the successive licensors have only limited */ |
---|
25 | /* liability. */ |
---|
26 | /* */ |
---|
27 | /* In this respect, the user's attention is drawn to the risks associated */ |
---|
28 | /* with loading, using, modifying and/or developing or reproducing the */ |
---|
29 | /* software by the user in light of its specific status of free software, */ |
---|
30 | /* that may mean that it is complicated to manipulate, and that also */ |
---|
31 | /* therefore means that it is reserved for developers and experienced */ |
---|
32 | /* professionals having in-depth computer knowledge. Users are therefore */ |
---|
33 | /* encouraged to load and test the software's suitability as regards their */ |
---|
34 | /* requirements in conditions enabling the security of their systems and/or */ |
---|
35 | /* data to be ensured and, more generally, to use and operate it in the */ |
---|
36 | /* same conditions as regards security. */ |
---|
37 | /* */ |
---|
38 | /* The fact that you are presently reading this means that you have had */ |
---|
39 | /* knowledge of the CeCILL-B license and that you accept its terms. */ |
---|
40 | /****************************************************************************/ |
---|
41 | #include "EchoPort.h" |
---|
42 | using namespace t3devlib; |
---|
43 | |
---|
44 | EchoPort::EchoPort (PortId& id) : |
---|
45 | Port (id) |
---|
46 | { |
---|
47 | } |
---|
48 | |
---|
49 | EchoPort::~EchoPort() |
---|
50 | { |
---|
51 | } |
---|
52 | |
---|
53 | bool EchoPort::Map (const PortId& connected_port_id) |
---|
54 | { |
---|
55 | return true; |
---|
56 | } |
---|
57 | |
---|
58 | bool EchoPort::Unmap (const PortId& connected_port_id) |
---|
59 | { |
---|
60 | return true; |
---|
61 | } |
---|
62 | |
---|
63 | bool EchoPort::Send (const ComponentId& from,const Bitstring& msg) { |
---|
64 | return EnqueueMsg (from, msg); |
---|
65 | } |
---|