Jason Scatena
Jason Scatena
I was receiving an error message in the GUI trying to run the "Migration" step, "set: Variable name must begin with a letter". Poking round it seems that line 169...
I believe I have identified 3 Ike Payloads that have bugs in their parser implementations. `Notify` and `Delete` seem to assume the length passed to them doesn't have the 4...
It looks like the Authentication payload was not properly handling the 3 reserved bytes. The Identification payload does this properly, so I modified `AuthenticationPayload` and `parse_ikev2_payload_authentication` to look like their...
After running the build and install commands from the readme the baz_sdl_sink is not available in GRC. I am attempting to use it in the "Audio FMCW.grc" sample file.
The `use_std` feature seems to be used to get access to dynamically allocated data collections (i.e. `Vec`). This however precludes the ability to use function such as `encode_vec()` in a...
I was attempting to follow along with the code example in the README and specifically for this example: ``` let add_ctx = read_ctx.derive_add_ctx(123); let rm_ctx = read_ctx.derive_rm_ctx(); reg.set("Value".to_string(), add_ctx); //...