Dmitry Kozlyuk

Results 12 comments of Dmitry Kozlyuk

Example file: ``` prefix="C:/Program Files/Npcap" Name: libpcap Version: 1.10 Description: Platform-independent network traffic capture library Cflags: -I${prefix}/Include Libs: -L${prefix}/Lib/x64 -lwpcap ``` Or, if it's feasible to change installation layout, this...

On Unices binaries are installed to prefixes like `/lib/i686-linux-gnu` or `/lib/x86_64-linux-gnu` and so do `*.pc` files. Pkg-config searches packages by filename without `.pc` in `PKG_CONFIG_PATH`, which contains paths under appropriate...

Bump. Is there a decision if Npcap will integrate pkg-config support? If it will, shall directory layout be changed? How can I help besides providing libpcap.pc above?

Upstream libpcap supports pkg-config from 1.9.0. My use case is Npcap being an optional dependency of [DPDK](https://www.dpdk.org) on Windows. DPDK uses pkg-config as the primary dependency locator on all platforms.

> may be true of some UN*Xes but not all. Thanks a lot for enlightening, I stand corrected. >> (Update: on Windows, pkg-config can detect prefix if file is placed...

Hello @s3rj1k! I intended to add real client validation and checking if client address is validated as the next step of this demo project, but unfortunately I recently had little...

Code pushed to [`usermode-proto` branch](https://github.com/PlushBeaver/xdp-syn-cookie/tree/usermode-proto). Create a local directory and mount BPF FS there (see `xdp_control.cc`): ``` mkdir maps sudo mount -t bpf none maps ``` After getting the stand...

@s3rj1k, 1. It appears, these functions were a bit renamed in upstream: https://github.com/iovisor/bcc/blob/master/src/cc/libbpf.h#L4. I test my code in Arch Linux 5.4.12-arch1-1 with libbpf-git 5188b0c-1. 2. Yes, this filter drops all...

2. I have sshd running on my host and verify as follows: ``` $ make all $ mkdir maps $ sudo mount -t bpf none maps $ sudo ./stand up...