quickfast
quickfast copied to clipboard
A C++ implementation of the FAST protocol.
``` bind can throw an exception which causes the app to crash ``` Original issue reported on code.google.com by `[email protected]` on 19 Jul 2012 at 9:07
``` Using quickfast_lnx_src_1_3.tar.gz I've found that I no longer get multicast data after upgrading from boost 1.45 to 1.50 on linux. I don't see any compiler warnings/errors and everything starts...
``` gcc 4.7 was throwing a sequence point warning for one line in DataSource.h. I guess it's confused about whether position_ should be incremented before or after the comparison. Here's...
``` This patch fixes issues in DecoderConnection and DecoderConfiguration classes due to typos. See attachment. ``` Original issue reported on code.google.com by `[email protected]` on 4 Jun 2012 at 6:40 Attachments:...
``` I've modified TutorialApplication to demonstrate the crash. All files should be copied into src/Examples/TutorialApplication (replace existing main.cpp). Accessor and Consumer implementation is irrelevant, they are here only to make...
``` If I stop DNDecoderConnection object after run (work OK) I cannot start it again. Nothing happens, DNMessageDeliverer.MessageReceived not called. VC#10 / xerces 3.1 / boost 1.43 ``` Original issue...
``` I am trying to parse data using TutorialApplication and InterpretApplication (no other applications available). The template is attached in this e-mail (this template works fine with the java parser)....
``` InterpretFASTDotNet produces a decoder error on the attached data file with the attached templates. (This is Eurex 13 EBS data). >InterpretFASTDotNet.exe -t E130_X0008002_FINAL.xml -f EurexEBS_fieldset_full_error.bin Start receiver. Record #1...
``` DNMessageDeliverer does not delete its ImplMessageDeliverer in the destructor. Because ImplMessageDeliverer holds a gcroot reference, this prevents the GC from collecting the DNMessageDeliverer. The attached patch fixes this. ```...
``` The DNField.ByteVector property returns a System.String which leads to the loss of the contents of the bytevector in many cases. The attached patch changes the property to return an...