Imported Upstream version 0.3
[anytun.git] / src / syncOnConnect.hpp
1 /*
2  *  anytun
3  *
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.
12  *
13  *
14  *  Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl, 
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
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.
22  *
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.
27  *
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/>.
30  */
31
32 void syncOnConnect(SyncTcpConnection * connptr)
33 {
34   //TODO Locking here   
35   ConnectionList & cl_(gConnectionList);
36   ConnectionMap::iterator cit = cl_.getBeginUnlocked();
37   for (;cit!=cl_.getEndUnlocked();++cit)
38   {
39     std::ostringstream sout;
40     boost::archive::text_oarchive oa(sout);
41     const SyncCommand scom(cl_,cit->first);
42     oa << scom;
43     std::stringstream lengthout;
44     lengthout << std::setw(5) << std::setfill('0') << sout.str().size()<< ' ';
45     connptr->Send(lengthout.str());
46     connptr->Send(sout.str());
47   }
48   //TODO Locking here   
49         network_address_type_t types[] = {ipv4,ipv6,ethernet};
50         for (int types_idx=0; types_idx<3; types_idx++)
51         {
52                 network_address_type_t type = types[types_idx];
53                 RoutingMap::iterator it = gRoutingTable.getBeginUnlocked(type);
54                 for (;it!=gRoutingTable.getEndUnlocked(type);++it)
55                 {
56                         NetworkPrefix tmp(it->first);
57                         std::ostringstream sout;
58                         boost::archive::text_oarchive oa(sout);
59                         const SyncCommand scom(tmp);
60                         oa << scom;
61                         std::stringstream lengthout;
62                         lengthout << std::setw(5) << std::setfill('0') << sout.str().size()<< ' ';
63                         connptr->Send(lengthout.str());
64                         connptr->Send(sout.str());
65                 }
66         }
67 }
68