@@ -99,9 +99,8 @@ func contains(addrs []netlink.Addr, addr *net.IPNet) bool {
99
99
}
100
100
101
101
const (
102
- VethName = "ethwe" // name inside container namespace
103
- //vethPrefix = "v" + VethName // starts with "veth" to suppress UI notifications
104
- vethPrefix = "v"
102
+ VethName = "ethwe" // name inside container namespace
103
+ vethPrefix = "v" + VethName // starts with "veth" to suppress UI notifications
105
104
)
106
105
107
106
func interfaceExistsInNamespace (netNSPath string , ifName string ) bool {
@@ -120,13 +119,11 @@ func AttachContainer(netNSPath, id, ifName, bridgeName string, mtu int, withMult
120
119
defer ns .Close ()
121
120
122
121
if ! interfaceExistsInNamespace (netNSPath , ifName ) {
123
- //maxIDLen := IFNAMSIZ - 1 - len(vethPrefix+"pl")
124
- maxIDLen := IFNAMSIZ - 1 - len (vethPrefix + "l" )
122
+ maxIDLen := IFNAMSIZ - 1 - len (vethPrefix + "pl" )
125
123
if len (id ) > maxIDLen {
126
124
id = id [:maxIDLen ] // trim passed ID if too long
127
125
}
128
- //name, peerName := vethPrefix+"pl"+id, vethPrefix+"pg"+id
129
- name , peerName := vethPrefix + "l" + id , vethPrefix + "g" + id
126
+ name , peerName := vethPrefix + "pl" + id , vethPrefix + "pg" + id
130
127
veth , err := CreateAndAttachVeth (name , peerName , bridgeName , mtu , keepTXOn , true , func (veth netlink.Link ) error {
131
128
if err := netlink .LinkSetNsFd (veth , int (ns )); err != nil {
132
129
return fmt .Errorf ("failed to move veth to container netns: %s" , err )
0 commit comments