Philipp Vincent Ebert

Results 5 issues of Philipp Vincent Ebert

![Screenshot 2022-08-31 at 09 57 35](https://user-images.githubusercontent.com/29581161/187628391-f827c438-235c-4877-9b7f-2709288fc1d2.png) I currently use AstroNvim and the server is always emitting the "no database connection" error message on start, but the server does work regardless....

![Screenshot 2022-10-11 at 20 13 23](https://user-images.githubusercontent.com/29581161/195168672-47398c14-3b2e-4e64-8b46-c364b8165dc9.png) The field type of "info" is String what should correspond to [Memo](https://docs.rs/dbase/0.3.0/dbase/enum.FieldValue.html#variant.Memo), but the Deserialiser expects a Character field because "info" ist of type...

I build a IpfixPacket in several iterations from a stream of DataRecords, so it would be interesting to know this. I considered saving all DataRecords into a Vector and build...

I noticed a small bug in the padding calculation, for achieving 4-byte alignment. This adjustment applies to the `calculate_set_size_with_padding` function in both `ipfix.rs` and `netflow.rs`. Previously, the padding was calculated...

Imagine something like this: ```rust let expression = String::from("src_port == 8080 && dst_port == 6868"); let engine = Engine::new(); // Build the abstract syntax tree let ast = engine.compile_expression(expression).unwrap(); //...

question