mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 14:25:16 +00:00
fmt: fix formatting of lib/std/x/net/bpf.zig
This commit is contained in:
parent
6d48600ea0
commit
d5fcb50988
@ -105,7 +105,7 @@
|
||||
//! (010) ret #262144 ; copy 0x40000
|
||||
//! (011) ret #0 ; skip packet
|
||||
//! ```
|
||||
//!
|
||||
//!
|
||||
//! Here we can make a few observations:
|
||||
//!
|
||||
//! - The problem "filter only tcp packets" has essentially been transformed
|
||||
@ -248,7 +248,7 @@ pub const JGT = 0x20;
|
||||
/// jge x, Lt, Lf: pc += (a >= x) ? jt : jf.
|
||||
pub const JGE = 0x30;
|
||||
/// jset #k, Lt, Lf: pc += (a & k > 0) ? jt : jf.
|
||||
/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf.
|
||||
/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf.
|
||||
pub const JSET = 0x40;
|
||||
|
||||
// Miscellaneous operations/register copy.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user