'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Class opt_mtu

odtone::net::ip::opt_mtu

Synopsis

// In header: </home/carlos/Projectos/odtone/inc/odtone/net/ip/icmp/icmp_options.hpp>


class opt_mtu : public odtone::net::ip::option {
public:
  // construct/copy/destruct
  opt_mtu();

  // public member functions
  void set(uint32);
  uint32 get() const;

  // public data members
  static const uint8 type_value;
  static const size_t static_size;
  uint16 _reserved;
  uint32 _mtu;
};

Description

opt_mtu public construct/copy/destruct

  1. opt_mtu();

opt_mtu public member functions

  1. void set(uint32 val);
  2. uint32 get() const;

PrevUpHomeNext