support win7 and reduce win mem usage (#128)

This commit is contained in:
Sijie.Sun
2024-06-02 14:07:21 +08:00
committed by GitHub
parent f1e9864d08
commit 360691276c
3 changed files with 8 additions and 3 deletions
+6
View File
@@ -289,6 +289,12 @@ impl VirtualNic {
config.name(format!("et{}_{}_{}", self.dev_name, c, s));
// set a temporary address
config.address(format!("172.0.{}.3", c).parse::<IpAddr>().unwrap());
config.platform(|config| {
config.skip_config(true);
config.guid(None);
config.ring_cap(Some(config.min_ring_cap() * 2));
});
}
if self.queue_num != 1 {