Dimitar Krastev

Results 49 comments of Dimitar Krastev
trafficstars

Another thing is replacing `ostringstream` usages with `to_string` where it is used to convert only a single value to string.

Hmm... so I seem to have hit a bit of a roadblock. When the filter is being compiled by Winpcap, I get the message "bogus IPv6 address". This persists for...

> @Dimi1010 did you try the full version of an ipv6 address, for example: instead of `::1` use `0000:0000:0000:0000:0000:0000:0000:0001`? @seladb Yes, tried these so far: - `2001:db9:0:12::1` -> `Error compiling...

@seladb Haven't really had much time for it, yet. Had some trouble getting npcap to work coz I was using vcpkg and it only had winpcap, then got hit with...

@seladb The main issue I have with atm is getting the tests to run. For some reason without vcpkg, the project builds fine, and then when I run the test...

ok, apparently it was a random `wpcap.dll` that somehow found itself in the tests Bin folder shadowing the one in `system32`. No idea how it got itself there, and the...

> > @seladb Yes, tried these so far: > > ``` > > * `2001:db9:0:12::1` -> `Error compiling filter. Error message is: bogus IPv6 address 2001:db9:0:12::1` > > > >...

Kinda curious, is there a particular issue that requires the vector being thread safe? Also, if it isn't required all the time, the feature can be made opt-in by injecting...

@seladb @tigercosmos I was thinking more along the lines of how spdlog solved it with their logging sinks. Ends up requiring a template but you don't really have any runtime...

> > @seladb @tigercosmos I was thinking more along the lines of how spdlog solved it with their logging sinks. Ends up requiring a template but you don't really have...