code wiki / _hdl_build / nx_crawl_coverage_census.nx

nx_crawl_coverage_census.nx

buildroot/runtime/_hdl_build/nx_crawl_coverage_census.nx

9306 B97 linesdepth 2pulls 2 transitivereach 0 importersview sourcekind tooltopic crawl
docsdependenciesstructsconstsfunctions

about

nx_crawl_coverage_census.nx -- HONEST access-coverage census for the sovereign crawler (operator 2026-07-04: "are there other forms of sites like this... make sure we have FULL COVERAGE before we pretend our crawler is state of the art"). Maps the full ACCESS TAXONOMY a SOTA crawler must handle (TLS versions/ciphers/curves, HTTP versions, content encodings, JS-render, anti-bot, discovery) and grades each: WIRED (in the live crawl fetch path) · HAVE (capability organ exists but not wired) · GAP (missing). Grounding = nx_research_fetch cc_* sources (webcrawler/http2/http3/tls/brotli/robots/cipher/botmgmt). Score = permille WIRED-or-HAVE, but SOTA is claimed ONLY when the WIRED set covers the taxonomy -- gaps are named, never hidden. license_tier: ORIGINAL

dependencies 1 imports · 0 importers

nx_syscalls.nx nx_crawl_coverage_census.nx

imports: nx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main w sys_write sys_mmap row w ↻ fex sys_openat_rd sys_close wn sys_write ↻ sys_mmap ↻

structs

none

consts

none

functions

10func w(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 }
called by 2: rowmain calls 1: sys_write
11func wn(v: i64) -> i64 { if v==0 { sys_write(1,"0" as *u8,1); return 0 } var m: i64=v; if m<0 { sys_write(1,"-" as *u8,1); m=0-m } let t: *u8=sys_mmap(24); var k: i64=0; while m>0 { t[k]=(48+(m%10)) as u8; m=m/10; k=k+1 } let o: *u8=sys_mmap(24); var q: i64=k-1; var x: i64=0; while q>=0 { o[x]=t[q]; x=x+1; q=q-1 } sys_write(1,o,x); return 0 }
called by 1: main calls 2: sys_writesys_mmap
12func fex(path: *u8) -> i64 { let fd: i64=sys_openat_rd(path); if fd<0 { return 0 } sys_close(fd); return 1 }
called by 1: main calls 2: sys_openat_rdsys_close
14func row(name: *u8, tier: i64, wired: *i64, have: *i64, total: *i64) -> i64
called by 1: main calls 1: w
22func main() -> i64