Line data Source code
1 : /* 2 : * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #include "bgp/tunnel_encap/tunnel_encap.h" 6 : 7 : 8 : #include <algorithm> 9 : #include <sstream> 10 : 11 : 12 : using std::copy; 13 : using std::fill; 14 : using std::string; 15 : 16 61154 : TunnelEncap::TunnelEncap(string encap) { 17 61154 : fill(data_.begin(), data_.end(), 0); 18 61154 : TunnelEncapType::Encap id = TunnelEncapType::TunnelEncapFromString(encap); 19 61155 : if (id == TunnelEncapType::UNSPEC) return; 20 61154 : data_[0] = 0x03; 21 61154 : data_[1] = 0x0C; 22 : // Reserved 23 61153 : put_value(&data_[2], 4, 0); 24 61153 : put_value(&data_[6], 2, id); 25 : } 26 : 27 4840 : TunnelEncap::TunnelEncap(TunnelEncapType::Encap tunnel_encap) { 28 4840 : fill(data_.begin(), data_.end(), 0); 29 4840 : data_[0] = 0x03; 30 4840 : data_[1] = 0x0C; 31 : // Reserved 32 4840 : put_value(&data_[2], 4, 0); 33 4841 : put_value(&data_[6], 2, tunnel_encap); 34 4840 : } 35 : 36 651618 : TunnelEncap::TunnelEncap(const bytes_type &data) { 37 651618 : copy(data.begin(), data.end(), data_.begin()); 38 651646 : } 39 : 40 1159551 : TunnelEncapType::Encap TunnelEncap::tunnel_encap() const { 41 1159551 : if (data_[0] != 0x03 || data_[1] != 0x0c) 42 3 : return TunnelEncapType::UNSPEC; 43 1159487 : uint16_t value = get_value(&data_[6], 2); 44 1159561 : if (TunnelEncapType::TunnelEncapIsValid(value)) { 45 1159315 : return static_cast<TunnelEncapType::Encap>(value); 46 : } else { 47 3 : return TunnelEncapType::UNSPEC; 48 : } 49 : } 50 : 51 4266 : string TunnelEncap::ToString() { 52 4266 : string str("encapsulation:"); 53 4266 : str += TunnelEncapType::TunnelEncapToString(tunnel_encap()); 54 4266 : return str; 55 0 : } 56 : 57 476408 : string TunnelEncap::ToXmppString() { 58 476408 : return TunnelEncapType::TunnelEncapToXmppString(tunnel_encap()); 59 : }