Andrey Terentyev

Results 6 comments of Andrey Terentyev

The problem won't go away by just installing automake/autoconf/libtool. One also needs to run 'autoreconf -i' before rerunning ./configure - it will install the missing files that ./configure is complaining...

Hi @bencebeky. I've recently bumped into the lack of custom methods support issue #18819 in one of our prod environments. Interestingly http-parser [does support some custom methods](https://github.com/nodejs/http-parser/blob/ec8b5ee63f0e51191ea43bb0c6eac7bfbff3141d/http_parser.h#L165C1-L208C1) but they are...

Thanks @bencebeky! Would envoy community accept addition of new methods to Balsa? The method we need right now is the BITS_POST which is used by [BITS Upload Protocol](https://learn.microsoft.com/en-us/windows/win32/bits/bits-upload-protocol]). It acts...

Thanks @cryptotiger ! Works great on Ubuntu 16.04. It makes sense to push this change into git as, at the end of the day, viewssld does depend on libcrypto/libz. I...

> Got it to configure & compile by adding two lines in /usr/local/include/dssl/packet.h (from libdssl): > > ``` > #include > #include > ``` In case of Ubuntu 16.04 I...

The fix in https://github.com/plashchynski/viewssld/issues/3 was to add the following includes into /usr/local/include/dssl/packet.h: ``` #include #include ``` In case of Ubuntu 16.04 this still produces the problem, however moving these includes...