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 61212 : TunnelEncap::TunnelEncap(string encap) { 17 61212 : fill(data_.begin(), data_.end(), 0); 18 61212 : TunnelEncapType::Encap id = TunnelEncapType::TunnelEncapFromString(encap); 19 61211 : if (id == TunnelEncapType::UNSPEC) return; 20 61210 : data_[0] = 0x03; 21 61210 : data_[1] = 0x0C; 22 : // Reserved 23 61210 : put_value(&data_[2], 4, 0); 24 61211 : put_value(&data_[6], 2, id); 25 : } 26 : 27 4844 : TunnelEncap::TunnelEncap(TunnelEncapType::Encap tunnel_encap) { 28 4844 : fill(data_.begin(), data_.end(), 0); 29 4844 : data_[0] = 0x03; 30 4844 : data_[1] = 0x0C; 31 : // Reserved 32 4844 : put_value(&data_[2], 4, 0); 33 4844 : put_value(&data_[6], 2, tunnel_encap); 34 4844 : } 35 : 36 652611 : TunnelEncap::TunnelEncap(const bytes_type &data) { 37 652611 : copy(data.begin(), data.end(), data_.begin()); 38 652676 : } 39 : 40 1162133 : TunnelEncapType::Encap TunnelEncap::tunnel_encap() const { 41 1162133 : if (data_[0] != 0x03 || data_[1] != 0x0c) 42 3 : return TunnelEncapType::UNSPEC; 43 1162149 : uint16_t value = get_value(&data_[6], 2); 44 1162180 : if (TunnelEncapType::TunnelEncapIsValid(value)) { 45 1161977 : return static_cast<TunnelEncapType::Encap>(value); 46 : } else { 47 3 : return TunnelEncapType::UNSPEC; 48 : } 49 : } 50 : 51 4264 : string TunnelEncap::ToString() { 52 4264 : string str("encapsulation:"); 53 4264 : str += TunnelEncapType::TunnelEncapToString(tunnel_encap()); 54 4264 : return str; 55 0 : } 56 : 57 477947 : string TunnelEncap::ToXmppString() { 58 477947 : return TunnelEncapType::TunnelEncapToXmppString(tunnel_encap()); 59 : }