changed IPv6 Extension Header naming conventions
[senf.git] / senf / Packets / DefaultBundle / IPv6ExtOptionType.ct
1 // $Id: IPv6ExtOptionType.ct 869 2008-06-09 13:57:27Z pug $
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Philipp.Batroff@fokus.fraunhofer.de
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief IPv6Extension-Options non-inline template implementation  */
25
26 //#include "IPv6ExtOptionType.ih"
27
28 // Custom includes
29
30 #define prefix_
31 ///////////////////////////////ct.p////////////////////////////////////////
32
33 template <class ForwardReadableRange>
34 prefix_ void senf::GenericOptTypeTLVParser::value(ForwardReadableRange const &range)
35 {
36     unsigned int rangeSize = boost::size(range);
37     safe_data_iterator si( data(),  boost::next(i(), 2 + optionLength() ) );
38     if ( (rangeSize-2) != optionLength() )
39         resize(optionLength()+2, rangeSize);
40
41     std::copy(boost::next(boost::begin(range), 2), boost::next(boost::end(range)), si);
42     unsigned int val = *(boost::begin(range));
43     unsigned int mask = 192u;
44     altAction() = (val & mask) >> 6;
45     mask = 32u;
46     changeFlag() = (val & mask) >> 5;
47     mask = 31u;
48     optionType() = (val & mask);
49     optionLength() = *(boost::next( boost::begin(range), 1));
50 }
51
52 template <class ForwardReadableRange>
53 prefix_ void senf::GenericOptTypeTLVParser::setPayload(ForwardReadableRange const &range)
54 {
55     unsigned int rangeSize = boost::size(range);
56     if ( rangeSize != optionLength() )
57         resize( (optionLength() + 2), (rangeSize + 2) );
58     safe_data_iterator si( data(), boost::next( i(), 2) );
59     std::copy( boost::begin(range), boost::end(range), si);
60     optionLength() = rangeSize;
61 }
62
63
64 template <class Parser>
65 prefix_ Parser& senf::GenericOptTypeTLVParser::init()
66 {
67     size_type oldSize ( bytes() );
68     safe_data_iterator j( data(), i() );
69     resize( oldSize, senf::init_bytes<Parser>::value);
70     std::advance(j, senf::init_bytes<Parser>::value);
71     std::fill(safe_data_iterator(data(), i()) , j, 0u);
72     Parser::optionType() = typeCode;
73     return *(this);
74 }
75
76 // template <class Parser>
77 // prefix_ Parser& senf::GenericOptTypeTLVParser::get()
78 // {
79 //     SENF_ASSERT (optionType() == typeCode);
80 //     return *(this);
81 // }
82
83
84 ///////////////////////////////ct.e////////////////////////////////////////
85 #undef prefix_
86
87
88 // Local Variables:
89 // mode: c++
90 // fill-column: 100
91 // c-file-style: "senf"
92 // indent-tabs-mode: nil
93 // ispell-local-dictionary: "american"
94 // compile-command: "scons -u test"
95 // comment-column: 40
96 // End: