Abhijit Gadgil
Abhijit Gadgil
Inside the crate `aya-ebpf` in the `programs` module (`ebpf/aya-ebpf/src/programs`), some internal raw pointers are exposed to user facing code as `pub` members. For example inside `programs/device.rs`) - ```rust pub struct...
When we try to run `cargo xtask build-ebpf` etc. we get the warning about Workspace default resolver set to "1". Since all the projects will be 2021 Edition, adding 'resolver...
@nplrkn : This is an interesting project. I was looking at 'sctp' implementation in your code. In fact it was the same problem that I had faced, that there was...
The Scaffold parameter `struct Parameter` has an optional `default` value. When this value is given this needs to be honored. For instance for a 'select' type parameter, this is set...
Is there a 'Developer Getting Started' guide? Basically what I am looking at is - how to get started with the code on a developer's laptop, (it's okay if I...
Added new public API for the `XdpContext`: - `adjust_head` : To grow the packet buffer at the beginning - `adjist_tail` : To grow the packet buffer at the end -...
Currently the APIs available for `XdpContext` support mainly accessing the `data` and `data_end`. It would be handy to have the APIs that allow to grow or shrink the packet as...