Click
1 program
Added 2026-02-13T15:25:26Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Click Modular Router
Provenance: commit 17c588b7c1 · authored 2026-02-13T16:26:23+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/clickExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.click | linguist | primary | 14.5K files |
Related languages
LLM-contributed programs
Simple IP Router
Provenance: commit 17c588b7c1 · authored 2026-02-13T16:26:23+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Simple IP router configuration
// Reads packets from eth0, classifies, and forwards
FromDevice(eth0)
-> classifier :: Classifier(12/0806 20/0001,
12/0806 20/0002,
12/0800,
-);
// ARP queries
classifier[0]
-> ARPResponder(10.0.0.1 00:11:22:33:44:55)
-> ToDevice(eth0);
// ARP responses
classifier[1]
-> [1]arpQuerier :: ARPQuerier(10.0.0.1, 00:11:22:33:44:55);
// IP packets
classifier[2]
-> Strip(14)
-> CheckIPHeader
-> rt :: RadixIPLookup(10.0.0.1/32 0,
10.0.0.0/24 0,
0.0.0.0/0 1);
// Local delivery
rt[0]
-> IPPrint("local")
-> Discard;
// Forward to next hop
rt[1]
-> DecIPTTL
-> IPPrint("forward")
-> [0]arpQuerier;
arpQuerier[0]
-> EtherEncap(0x0800, 00:11:22:33:44:55, ff:ff:ff:ff:ff:ff)
-> ToDevice(eth0);
// Unclassified packets
classifier[3]
-> Discard;
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)