quickfast
quickfast copied to clipboard
A C++ implementation of the FAST protocol.
``` [enter a more detailed description of the problem] What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version...
``` Hi, I'm getting the following decoder errors when processing multicast using InterpretApplication (quickfast 1.5) built on RedHat 6.4 Decoding error: [ERR D5] Copy operator missing mandatory integer field/no initial...
``` [enter a more detailed description of the problem] What steps will reproduce the problem? 1. Fails every time 2. 3. What is the expected output? What do you see...
``` hi build runs ok till some point where it produces following message: g++ -fPIC -O -O3 -DUSING_PCH -I"/usr/local/Cellar/boost/1.54.0/include/boost" -I"/usr/local/Cellar/boost/1.54.0/." -I"/include" -I"../src" -DXML_USE_PTHREADS -L"." -L"/usr/local/Cellar/boost/1.54.0/lib" -L"/lib" -shared -dynamic Common/QuickFASTPch.o Application/CommandArgParser.o...
``` Due to the changes introduced in release 1.5 (namely processing buffered output from PCap source), it seems that QuickFAST started to completely ignore data in PCap file if it...
``` I`m trying to read fast messages from memory buffer. I use 'ReceiverTypes.BUFFER_RECEIVER' for this purpose. When memory buffer contains only one fast message everything is OK. But when there...
``` I had 3 issues building the repo head of quickfast with boost 1.51 and gcc 4.7.2 on 64bit linux. Below are the details and fixes in case it helps...
``` I'm using quickfast v1.3 on linux and the following line in Codecs/FieldInstruction.h is being hit: context.reportFatal("[ERR U03]", "End of file without stop bit decoding unsigned integer.", name); Here's an...
``` Got an error when compiling with clang because a reinterpret_cast was discarding the const modifier in StringBuffer.h Here's the patch that corrects the issue: diff --git a/src/external/quickfast/Common/StringBuffer.h b/src/external/quickfast/Common/StringBuffer.h index...
``` Function FixedSizeHeaderAnalyzer::analyzeHeader always sets blockSize to zero if bigEndian is true. Fix is in attachment. ``` Original issue reported on code.google.com by `[email protected]` on 2 Aug 2012 at 4:03...