Results 11 comments of maltere

I would also prefer a bootstrap4 compatible version, as I do not want to depend on old bootstrap3 for new projects, as well as I understand that bootstrap3 is still...

In case someone wonders: Not setting the param `uniqid` or setting it uniquely computed based on the IP is also not helping. ````py def uniqueid(ip): length = 13 _hashable =...

Thank you @yoitsro for your response! So I tried multiple things according to your answer within my given Test Script: ### 1. **Adding only the convert flag** This means the...

A working example would be, changing the defined `schema` to the following: ```js const schema = Joi.object().keys({ dates: Joi.array().items(Joi.date()), assignedOn: Joi.date().allow(null).default(null) }); ``` Therefore I suggested the problem lays within...

I added a test case provoking the error. After I took a deeper look into the `Joigoose.convert` and `Joigoose.mongooseValidateWrapper` functions I wanted to provide some thoughts. 1. `mongooseValidateWrapper` does not...

Further investigated and compiled the version ecb8d6bbb6ab3ce52438c0c7c28b15aabc2d8a1f (v1.7.0.1) configured with `./configure --enable-nfpcapd` **cmd** `nfpcapd -r nflog-100.pcap -w output` **output** ``` Unsupported data link type 239 Setup failed. Exit ``` Did...

The fix of #169 seems to be changing the offset: https://github.com/phaag/nfdump/blob/cc8680e9772dcd3873d08f950110ed20d1e20904/src/nfpcapd/packet_pcap.c#L165-L170 With NFLOG a fix is not as easy, as the header size is variable. [LINKTYPE_NFLOG](https://www.tcpdump.org/linktypes/LINKTYPE_NFLOG.html)

@phaag I will try to send you a pcap file containing NFLOG by the end of this week. My current workaround is preprocessing the pcap files and manually "fake" a...