Olivier Langlois

Results 12 issues of Olivier Langlois

In the file pppd/plugins/pppol2tp/pppol2tp.c there is this code: /* Setup option defaults. Compression options are disabled! */ modem = 0; lcp_allowoptions[0].neg_accompression = 1; lcp_wantoptions[0].neg_accompression = 0; lcp_allowoptions[0].neg_pcompression = 1; lcp_wantoptions[0].neg_pcompression...

I also reported the issue on the devel mailing list. I guess that it would be trivial to fix and I could even do it myself! I just wanted to...

`inline bool isAuthRequired() const { return !m_restricted || !m_token.isNull(); }` should be `inline bool isAuthRequired() const { return m_restricted || !m_token.isNull(); }` Auth is required if m_restricted is true. Greetings,

Use it when loading a JSON number and json_strtoint returns ERANGE and the number is positive. Only falling back on the new type as a last resort only before issuing...

https://github.com/openssl/openssl/blob/master/include/internal/ktls.h#L152 openssl tricks recvmsg() into writing 5 bytes into the user buffer so that it can recreate the TLS header based on the ancillary data returned to avoid recopying the...

Because, select(),poll(), read(), write() and many other overloaded functions are normally reentrant from signal handlers, we need to block all signals while we hold mutex or else we can deadlock....

This is long term issue. glc file format support will at least be still around at the next release to help smooth migration from glc to glcs. but as the...

enhancement

It would certainly be easy for a bash script guru to write a small something to ease the process of setting up the ALSA split plugin creation.

enhancement

This is what most standard containers are doing today. By replacing std::deque with boost::circular, I got a few compilation errors... Prior to C++11, the guideline was to prefer iterator because...

this should be trivial to do. In fact, I might give implementing it a shot...

enhancement