-
Notifications
You must be signed in to change notification settings - Fork 327
Checksum Validate Flag #741
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Checksum Validate Flag #741
Conversation
| // Corrupt the checksum in the bytes directly | ||
| // The message ends with "10=XXX\x01". We flip a bit in the last digit. | ||
| checksumDigitIndex := len(msgBytes) - 2 | ||
| msgBytes[checksumDigitIndex] ^= 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I have a more clear way to edit the checksum? @michaelwilner
|
|
||
| // ParseMessage constructs a Message from a byte slice wrapping a FIX message. | ||
| func ParseMessage(msg *Message, rawMessage *bytes.Buffer) (err error) { | ||
| return ParseMessageWithDataDictionary(msg, rawMessage, nil, nil) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should probably be changed to include the skipChecksum check in the argument instead as that would provide more control
No description provided.