added cypher and authalgo
[anytun.git] / buffer.cpp
blob676deae911548d7a6ff72878b69277923f700ee1
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 anytun.org <satp@wirdorange.org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2
18 * as published by the Free Software Foundation.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program (see the file COPYING included with this
27 * distribution); if not, write to the Free Software Foundation, Inc.,
28 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <string>
33 #include "datatypes.h"
35 #include "buffer.h"
37 Buffer::Buffer() : buf_(0), length_(0)
41 Buffer::Buffer(u_int32_t length) : length_(length)
43 buf_ = new u_int8_t[length_];
44 if(buf_)
45 std::memset(buf_, 0, length_);
46 else
47 length_ = 0;
50 Buffer::Buffer(u_int8_t* data, u_int32_t length) : length_(length)
52 buf_ = new u_int8_t[length_];
53 if(buf_)
54 std::memcpy(buf_, data, length_);
55 else
56 length_ = 0;
59 Buffer::~Buffer()
61 if(buf_)
62 delete[] buf_;
65 Buffer::Buffer(const Buffer &src) : length_(src.length_)
67 buf_ = new u_int8_t[length_];
68 if(buf_)
69 std::memcpy(buf_, src.buf_, length_);
70 else
71 length_ = 0;
74 void Buffer::operator=(const Buffer &src)
76 if(buf_)
77 delete[] buf_;
79 length_ = src.length_;
81 buf_ = new u_int8_t[length_];
82 if(buf_)
83 std::memcpy(buf_, src.buf_, length_);
84 else
85 length_ = 0;
88 u_int32_t Buffer::resize(u_int32_t new_length)
90 if(length_ == new_length)
91 return length_;
93 u_int8_t *tmp = new u_int8_t[new_length];
94 if(!tmp)
95 return length_;
97 if(buf_)
99 std::memcpy(tmp, buf_, length_);
100 delete[] buf_;
103 length_ = new_length;
104 buf_ = tmp;
105 return length_;
108 u_int32_t Buffer::getLength() const
110 return length_;
113 u_int8_t* Buffer::getBuf()
115 return buf_;
118 Buffer::operator u_int8_t*( )
120 return buf_;