github.com/gophercloud/gophercloud@v1.11.0/openstack/networking/v2/extensions/mtu/results.go (about)

     1  package mtu
     2  
     3  // NetworkMTUExt represents an extended form of a Network with additional MTU field.
     4  type NetworkMTUExt struct {
     5  	// The maximum transmission unit (MTU) value to address fragmentation.
     6  	// Minimum value is 68 for IPv4, and 1280 for IPv6.
     7  	MTU int `json:"mtu"`
     8  }