psionic12
psionic12
There are 3 types of connection involves here: (correct if I'm wrong) 1. a socket connection, which is use for UDP datagram transport. 2. a quiche connection, which is use...
According to the doc: > QUIC connections are not strictly bound to a single network path. Connection migration uses connection identifiers to allow connections to transfer to a new network...
In practice, it is common that create command buffer pools in each thread, then we can get performance benifits, such as reset pools safely. But I didn't find a way...
## Issue description Created a brand new ndk project, CMake reported an error: ``` Could not find a package configuration file provided by "fbjni" with any of the following names:...
Some Java codes take an exception as a parameter (e.g. `public void callFailed(Call call, IOException ioe)` in okhttp) Make JXXExceptions public to save time.
When loading jni libraries which used fbjni, such as writing like this: System.loadLibrary("mylib"); there will be a crash said that NativeLoader has not been initialized. To use standard native library...
I got this when building: /home/liu/source/Agui/src/Agui/Gui.cpp: In member function ‘void agui::Gui::processInertia()’: /home/liu/source/Agui/src/Agui/Gui.cpp:1931:32: error: call of overloaded ‘abs(double&)’ is ambiguous if(abs(touchInertia) < 0.1) ^ In file included from /usr/include/c++/6/cstdlib:75:0, from /usr/include/c++/6/stdlib.h:36,...
I got some crashes when running quiche, it seems that `quiche::h3::Connection::poll()` crashed occasionally due to out of range access (not for sure), here's a core dump: ``` 03-23 11:01:48.048 9735...
here's the log: ~/source/libquic/build$ cmake .. -- The C compiler identification is GNU 5.4.0 -- The CXX compiler identification is GNU 5.4.0 -- Check for working C compiler: /usr/bin/cc --...
Not sure this should be a lacking in RFC or a bug in compiler, sorry if I issued to the wrong place. The title is a little confusing, here is...