rewrote network addressess to base on boost::asio
[anytun.git] / src / syncOnConnect.hpp
blobcaeae842c438e18acd79a6ab0f524b1189507ca6
1 /*
2 * anytun
4 * The secure anycast tunneling protocol (satp) defines a protocol used
5 * for communication between any combination of unicast and anycast
6 * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel
7 * mode and allows tunneling of every ETHER TYPE protocol (e.g.
8 * ethernet, ip, arp ...). satp directly includes cryptography and
9 * message authentication based on the methodes used by SRTP. It is
10 * intended to deliver a generic, scaleable and secure solution for
11 * tunneling and relaying of packets of any protocol.
14 * Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl,
15 * Christian Pointner <satp@wirdorange.org>
17 * This file is part of Anytun.
19 * Anytun is free software: you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License version 3 as
21 * published by the Free Software Foundation.
23 * Anytun is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with anytun. If not, see <http://www.gnu.org/licenses/>.
32 void syncOnConnect(SyncTcpConnection * connptr)
34 ConnectionList & cl_(gConnectionList);
35 ConnectionMap::iterator cit = cl_.getBeginUnlocked();
36 for (;cit!=cl_.getEndUnlocked();++cit)
38 std::ostringstream sout;
39 boost::archive::text_oarchive oa(sout);
40 const SyncCommand scom(cl_,cit->first);
41 oa << scom;
42 std::stringstream lengthout;
43 lengthout << std::setw(5) << std::setfill('0') << sout.str().size()<< ' ';
44 connptr->Send(lengthout.str());
45 connptr->Send(sout.str());
47 //TODO Locking here
48 RoutingMap::iterator it = gRoutingTable.getBeginUnlocked();
49 for (;it!=gRoutingTable.getEndUnlocked();++it)
51 NetworkPrefix tmp(it->first);
52 std::ostringstream sout;
53 boost::archive::text_oarchive oa(sout);
54 const SyncCommand scom(tmp);
55 oa << scom;
56 std::stringstream lengthout;
57 lengthout << std::setw(5) << std::setfill('0') << sout.str().size()<< ' ';
58 connptr->Send(lengthout.str());
59 connptr->Send(sout.str());
61 //TODO Locking here
62 RtpSessionMap::iterator rit = gRtpSessionTable.getBeginUnlocked();
63 for (;rit!=gRtpSessionTable.getEndUnlocked();++rit)
65 std::ostringstream sout;
66 boost::archive::text_oarchive oa(sout);
67 const SyncCommand scom(rit->first);
68 oa << scom;
69 std::stringstream lengthout;
70 lengthout << std::setw(5) << std::setfill('0') << sout.str().size()<< ' ';
71 connptr->Send(lengthout.str());
72 connptr->Send(sout.str());