Gisle Vanem

Results 66 issues of Gisle Vanem

Add `getopt_long.h`. To be included in `main.cpp` like: ```c #if !defined(HAVE_UNISTD_H #include "getopt_long.h" #endif #include #endif ```

This file is meant for MSVC (and other targets) that does not contain a `getopt()` function. As a bonus, this file also contains `getopt_long()`.

I'd like to see 32-bit (`x86`) support in SatDump programs. Since most of my external packages are for 32-bit. (I guess that's the situation for many developers too). I've built...

When running this test program on MSVC/clang (x86), all I got was: `expected to decode 4096 bytes, decoded 0 bytes instead` before it exited. The reason is that `error-sim.c` and...

Please change the resource-strings / data inside your `wpcap.dll`. I just installed your `Win10Pcap-v10.1-5001.msi` alongside my original WinPcap and now I've got what I think are Win10Pcap's version under: ```...

Compiling the `Packet_dll` sources in debug-mode and with the switch `-RTCs` and using them in a [simple program](https://gist.github.com/gvanem/57d24d69e0099886fb15), I get a crash as show here: ![enum_adapters_crash_report](https://cloud.githubusercontent.com/assets/945271/8728496/b03fbe18-2be5-11e5-8c8c-c1aafbf49538.png) Seems the definition of...

There are some gcc errors when building with [TDM-gcc](http://tdm-gcc.tdragon.net/): ``` win_bpf_filter.c: In function 'bpf_filter': win_bpf_filter.c:419:11: error: lvalue required as left operand of assignment (int)A = -((int)A); ^ win_bpf_filter.c: In function...

It would IMHO be nice to have a more _URL-familiar_ syntax for password-cracking HTTP/HTTPS resources. So these examples (as is required now?): ``` ncrack -p80 10.0.0.1 -g path=Status_Router.asp ncrack -p443...

In `./src/arp-win32.c`, `arp_loop()` will add invalid ARP-entries (because of incomplete ARP requests etc.). Was this intentional? It seems strange to do that (comparing to the `arp -a` command on Win8.1)....

AFAICS, there is no way to enable *Large file support* for MSVC due to the test in ``: ``` #ifdef QT_LARGEFILE_SUPPORT ... #define QT_FSEEK ::fseeko64 #define QT_FTELL ::ftello64 ... ```...