Lev Walkin

Results 12 issues of Lev Walkin

The test suite is used to check that Network.Pcap.statistics really throws. Might be useful for something else.

Avoid making Haskell treat C int as long (Haskell's Int). Without this patch: ``` Prelude Network.Pcap> openOffline "test/empty.pcap" >>= statistics Statistics {statReceived = 129485792, statDropped = 1, statIfaceDropped = 129485816}...

Pronk needs to tell the user about --help. The current message is cryptic. ``` shell [vlm@nala:~/work/github/third-party/pronk (master)]> pronk Requires at least 1 arguments, got 0 [vlm@nala:~/work/github/third-party/pronk (master)]> ```

Pronk does not deal with server limits: ``` shell [vlm@nala:~/work/github/third-party/pronk (master)]> pronk -n 101 http://github.com/ pronk: ParseError {errorContexts = ["HTTP status line","demandInput"], errorMessage = "not enough bytes"} pronk: thread blocked...

SSL_CTX_set_ecdh_auto function is deprecated: ``` if (ctx->config->ecdhecurve == -1) { SSL_CTX_set_ecdh_auto(*ssl_ctx, 1); } else if (ctx->config->ecdhecurve != NID_undef) { ``` It won't compile very soon. Need to make conditional compilation....

macOS Sierra, Apple LLVM version 7.3.0 (clang-703.0.31). ``` [vlm@nala:~/sustrik/dsock (master)]> ./tests/bthrottler Assertion failed: (elapsed > 80 && elapsed < 100), function main, file tests/bthrottler.c, line 42. Abort trap: 6 [vlm@nala:~/sustrik/dsock...

@sustrik, I am not sure I am following the model correctly. When I am doing bsend() followed by hclose(), the remote end (such as curl) receives RST and prints out:...

Here's a segmentation fault in the simplest C++ program: ## Source ### `main.cpp`: ```C++ extern "C" { #include } void test(int); int main(int ac, char **) { bool x =...

One would assume that an API which supports "lists of items" can support list of 0 elements, or a list of an empty item. This is not the case with...

...otherwise valgrind complains on newer OSes and older OSes might not work correctly. The provisions for checking the (SA_LEN) were there in the code (line https://github.com/wahern/dns/pull/21/files#diff-b2ddf457bc423779995466f7d8b9d147L4432), I just applied them...