authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-04-28 18:34:37+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-04-28 18:34:37+02:00
logd5fcb509881e1b022d2bcef303b53b4f67db1c9a
treee0db6a96cbb53a93c2b4debf1deaa78697dddf1a
parent6d48600ea099a0ac3e99a3970dd79f989f3f9b84

fmt: fix formatting of lib/std/x/net/bpf.zig


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/x/net/bpf.zig+2-2
...@@ -105,7 +105,7 @@...@@ -105,7 +105,7 @@
105//! (010) ret #262144 ; copy 0x40000105//! (010) ret #262144 ; copy 0x40000
106//! (011) ret #0 ; skip packet106//! (011) ret #0 ; skip packet
107//! ```107//! ```
108//! 108//!
109//! Here we can make a few observations:109//! Here we can make a few observations:
110//!110//!
111//! - The problem "filter only tcp packets" has essentially been transformed111//! - The problem "filter only tcp packets" has essentially been transformed
...@@ -248,7 +248,7 @@ pub const JGT = 0x20;...@@ -248,7 +248,7 @@ pub const JGT = 0x20;
248/// jge x, Lt, Lf: pc += (a >= x) ? jt : jf.248/// jge x, Lt, Lf: pc += (a >= x) ? jt : jf.
249pub const JGE = 0x30;249pub const JGE = 0x30;
250/// jset #k, Lt, Lf: pc += (a & k > 0) ? jt : jf.250/// jset #k, Lt, Lf: pc += (a & k > 0) ? jt : jf.
251/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf. 251/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf.
252pub const JSET = 0x40;252pub const JSET = 0x40;
253253
254// Miscellaneous operations/register copy.254// Miscellaneous operations/register copy.