Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
bokeefe123 committed Jun 5, 2024
1 parent 6cde18e commit c024d69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ x509-parser = "0.13.2"

[features]
timing = []
mlx5 = []
default = ["mlx5"]
# mlx5 = []
# default = ["mlx5"]
2 changes: 1 addition & 1 deletion core/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn main() {
let out_dir = Path::new(&out_dir_s);
let dpdk_path_s = env::var("DPDK_PATH").unwrap();
let dpdk_path = Path::new(&dpdk_path_s);
let pkg_config_path = dpdk_path.join("lib/x86_64-linux-gnu/pkgconfig");
let pkg_config_path = dpdk_path.join("lib/aarch64-linux-gnu/pkgconfig");
let cflags_bytes = Command::new("pkg-config")
.env("PKG_CONFIG_PATH", &pkg_config_path)
.args(["--cflags", "libdpdk"])
Expand Down
4 changes: 2 additions & 2 deletions core/src/subscription/quic_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ impl Trackable for TrackedQuic {

if let Some(long_header) = &quic_clone.long_header {
if long_header.dcid_len > 0 {
self.connection_id.insert(&long_header.dcid);
self.connection_id.insert(long_header.dcid.clone());
}
if long_header.scid_len > 0 {
self.connection_id.insert(&long_header.scid);
self.connection_id.insert(long_header.scid.clone());
}
} else {
if let Some(ref mut short_header_value) = quic_clone.short_header {
Expand Down

0 comments on commit c024d69

Please sign in to comment.