quickfix
quickfix copied to clipboard
The Go FIX Protocol Library :rocket:
This PR adds the ablity to have a registry per instance of initiator or acceptor and not have session conflicts. The main purpose of this is to allow in process...
FIXT.1.1 50SP2 When set EnableNextExpectedMsgSeqNum=Y,the tag 789 always equals to 2 when first time logon. [DEFAULT] SocketConnectHost=127.0.0.1 SocketConnectPort=1111 HeartBtInt=60 SenderCompID=xx TargetCompID=xx ResetOnDisconnect=N ResetOnLogon=N FileLogPath=fixlog StartTime=04:00:00 EndTime=23:55:00 [SESSION] BeginString=FIXT.1.1 FileStorePath=./sessions/ DefaultApplVerID=9...
suite.T().SkipNow() has to be called in all tests.
A maliciously crafted message with a bogus body length could make the parser panic if the body length is close to the int limit. Fixes https://github.com/quickfixgo/quickfix/issues/678
I want to change the Account field by calling quickfix.Message.Body.Set, but the quickfix.Message doesn't change. Why? Is this a bug or am I using it wrong? ```go var RawFixMsg *quickfix.Message...
Adds the `String()` function to enums, satisfying the `fmt.Stringer` interface. Returns the enum description and falls back to "Unknown_{EnumNameHere}" if for some reason a case hasn't been accounted for automatically.