Philipp Vincent Ebert
Philipp Vincent Ebert
 I currently use AstroNvim and the server is always emitting the "no database connection" error message on start, but the server does work regardless....
 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(); //...