-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 35=n <message> defs to dictionary
In case anyone wants to crack an 'n' message Also, the issue number in the release notes was wrong, oops addendum to #907
- Loading branch information
1 parent
88e09ad
commit edf0fcf
Showing
12 changed files
with
96 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a generated file. Don't edit it directly! | ||
|
||
using QuickFix.Fields; | ||
namespace QuickFix | ||
{ | ||
namespace FIX43 | ||
{ | ||
public class XMLnonFIX : Message | ||
{ | ||
public const string MsgType = "n"; | ||
|
||
public XMLnonFIX() : base() | ||
{ | ||
this.Header.SetField(new QuickFix.Fields.MsgType("n")); | ||
} | ||
|
||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a generated file. Don't edit it directly! | ||
|
||
using QuickFix.Fields; | ||
namespace QuickFix | ||
{ | ||
namespace FIX44 | ||
{ | ||
public class XMLnonFIX : Message | ||
{ | ||
public const string MsgType = "n"; | ||
|
||
public XMLnonFIX() : base() | ||
{ | ||
this.Header.SetField(new QuickFix.Fields.MsgType("n")); | ||
} | ||
|
||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a generated file. Don't edit it directly! | ||
|
||
using QuickFix.Fields; | ||
namespace QuickFix | ||
{ | ||
namespace FIXT11 | ||
{ | ||
public class XMLnonFIX : Message | ||
{ | ||
public const string MsgType = "n"; | ||
|
||
public XMLnonFIX() : base() | ||
{ | ||
this.Header.SetField(new QuickFix.Fields.MsgType("n")); | ||
} | ||
|
||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- for DataDictionaryTests.TestCheckMsgType --> | ||
|
||
<fix minor="9" major="9"> | ||
<header/> | ||
<trailer/> | ||
<messages> | ||
<message name="News" msgtype="B" msgcat="admin"> | ||
<!-- body not important for test --> | ||
</message> | ||
</messages> | ||
|
||
<fields> | ||
<field number="35" name="MsgType" type="STRING"> | ||
<value enum="B" description="NEWS" /> | ||
<value enum="bar" description="BAR_MESSAGE" /> | ||
</field> | ||
</fields> | ||
</fix> |