Skip to content

Commit

Permalink
Merge pull request #178 from morningtzh/tapname
Browse files Browse the repository at this point in the history
Shorten tap name
  • Loading branch information
abel-von authored Jan 13, 2025
2 parents fdcb454 + 0fb5c18 commit 34df244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmm/sandbox/src/network/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ impl NetworkInterface {
match &self.r#type {
LinkType::Veth => {
let handle = create_netlink_handle(netns).await?;
let tap_name = format!("tap_kuasar_{}", self.index);
let tap_name = format!("tap_kua_{}", self.index);
let tap_intf =
create_tap_in_netns(netns, &tap_name, self.queue, self.mtu, &handle).await?;
tap_intf.add_qdisc_ingress(netns, &handle).await?;
Expand Down

0 comments on commit 34df244

Please sign in to comment.