We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95dbbc4 commit 0026e5dCopy full SHA for 0026e5d
lib/std/x/net/bpf.zig
@@ -105,7 +105,7 @@
105
//! (010) ret #262144 ; copy 0x40000
106
//! (011) ret #0 ; skip packet
107
//! ```
108
-//!
+//!
109
//! Here we can make a few observations:
110
//!
111
//! - The problem "filter only tcp packets" has essentially been transformed
@@ -248,7 +248,7 @@ pub const JGT = 0x20;
248
/// jge x, Lt, Lf: pc += (a >= x) ? jt : jf.
249
pub const JGE = 0x30;
250
/// jset #k, Lt, Lf: pc += (a & k > 0) ? jt : jf.
251
-/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf.
+/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf.
252
pub const JSET = 0x40;
253
254
// Miscellaneous operations/register copy.
0 commit comments