Table of content
What is this?
The rules of the game are explained in my original post .
16th Challenge
Challenge
Today’s challenge is a second attempt at yesterday’s challange . The solution I provided has been deprecated, so I want to do it without the use of mod.rs
Solution
The new solution looks like this:
.
├── airtime
│ └── calculator.rs
├── airtime.rs
├── applayer
│ ├── clock
│ │ ├── cid_string.rs
│ │ └── clock_sync.rs
│ ├── clock.rs
│ ├── fragmentation
│ │ ├── cid_string.rs
│ │ ├── encode.rs
│ │ └── fragmentation.rs
│ ├── fragmentation.rs
│ ├── multicastsetup
│ │ ├── cid_string.rs
│ │ ├── keys.rs
│ │ └── multicastsetup.rs
│ └── multicastsetup.rs
├── applayer.rs
├── backend
│ ├── backend.rs
│ ├── client.rs
│ ├── joinserver
│ │ ├── context.rs
│ │ ├── errors.rs
│ │ ├── join_request.rs
│ │ ├── join_server.rs
│ │ ├── rejoin_request.rs
│ │ └── session_keys.rs
│ └── joinserver.rs
├── backend.rs
├── band
│ ├── band.rs
│ ├── band_as923.rs
│ ├── band_au915_928.rs
│ ├── band_cn470_510.rs
│ ├── band_cn779_787.rs
│ ├── band_eu433.rs
│ ├── band_eu863_870.rs
│ ├── band_in865_867.rs
│ ├── band_irsm2400.rs
│ ├── band_krs920_923.rs
│ ├── band_ru864_870.rs
│ ├── band_us902_928.rs
│ └── errors.rs
├── band.rs
├── calculator
├── clock
├── gps
│ └── gps.rs
├── gps.rs
├── main.rs
├── sensitivity
│ └── sensitivity.rs
└── sensitivity.rs
To get a good feel for it see / clone github .