Skip to content

Commit

Permalink
Support listening on open ports
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Foxhall <tfoxhall@bloomberg.net>
  • Loading branch information
hallfox committed Feb 20, 2024
1 parent ef9b0a7 commit 394b4d9
Show file tree
Hide file tree
Showing 6 changed files with 2,564 additions and 2,721 deletions.
16 changes: 14 additions & 2 deletions src/groups/mqb/mqbcfg/mqbcfg.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<complexType name='AppConfig'>
<annotation>
<documentation>
Top level typ for the broker's configuration.
Top level type for the broker's configuration.

brokerInstanceName...: name of the broker instance
brokerVersion........: version of the broker
Expand All @@ -75,7 +75,7 @@
bmqconfConfig........: configuration for bmqconf
plugins..............: configuration for the plugins
msgPropertiesSupport.: information about if/how to advertise support for v2 message properties
configureStream......: send new ConfigureStream instead of old ConfigureQueue/>
configureStream......: send new ConfigureStream instead of old ConfigureQueue
</documentation>
</annotation>
<sequence>
Expand Down Expand Up @@ -255,6 +255,18 @@
<element name='nodeHighWatermark' type='long' default='2048'/>
<element name='heartbeatIntervalMs' type='int' default='3000'/>
<element name='useNtf' type='boolean' default='false'/>
<element name='listeners' type='tns:TcpInterfaceListener' minOccurs='0' maxOccurs='unbounded'/>
</sequence>
</complexType>

<complexType name='TcpInterfaceListener'>
<annotation>
<documentation>
</documentation>
</annotation>
<sequence>
<element name='name' type='string'/>
<element name='port' type='int'/>
</sequence>
</complexType>

Expand Down
Loading

0 comments on commit 394b4d9

Please sign in to comment.