textshell

Results 7 issues of textshell

SliceFilter::doFilter tries splits the input into parts left and right from the ":" that divides the range to output. ``` auto splitterIndex = argString.get().indexOf(QLatin1Char(':')); QString inputString = getSafeString(input); if (splitterIndex...

There are patches in flight for the linux kernel to add an additional mechanism to allow file IO without affecting file caches. The proposal uses a new flag RWF_UNCACHED for...

enhancement

Just a thought from an irc discussion about finding backup performance problems. If we had some option that outputs more detailed statistics about potentially performance relevant details it might be...

enhancement
Bountysource

When adding new specializations of StringMaker in a program it's fairly natural to start adding them in a specific compilation unit to get started. If the class is used in...

The documentation for SSL_write_ex specifies that if it succeeds, it will always have written at least one byte. /CC: @hlandau For quic with enabled partial writes mode, this is not...

branch: master
triaged: bug
branch: 3.2

SSL_set_mode does not seem to work right with quic streams. I'm trying to set partial write mode with code similar to this: ``` SSL *stream = SSL_new_stream(quic_connection, 0); SSL_set_mode(stream, SSL_MODE_ENABLE_PARTIAL_WRITE);...

triaged: bug

Currently calling SSL_export_keying_material on a quic connection SSL object results in an error (via ssl3_undef_enc_method used in the quic methods). Using channel binding with quic should be possible. It seems...

triaged: feature