Skip to content

Commit

Permalink
Merge branch 'configuration_tutorial'
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Busbey committed Oct 12, 2011
2 parents 0ecf551 + c0783ca commit 08d8cda
Showing 1 changed file with 59 additions and 1 deletion.
60 changes: 59 additions & 1 deletion tutorial/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ Below are the settings that can be associated with a session based on the defaul
QuickFIX Settings
-----------------

* [Session](#session)
* [Validation](#validation)
* [Initiator](#initiator)
* [Acceptor](#acceptor)
* [Logging](#logging)

<a name='session'> </a>

### Session

<table>
Expand Down Expand Up @@ -129,6 +137,9 @@ QuickFIX Settings
</tr>
</table>


<a name='validation'> </a>

### Validation

<table>
Expand Down Expand Up @@ -238,6 +249,8 @@ QuickFIX Settings
</tr>
</table>

<a name='initiator'></a>

###Initiator

<table>
Expand Down Expand Up @@ -286,11 +299,56 @@ QuickFIX Settings
<tr>
<td class='setting'>SocketConnectHost&lt;n&gt;</td>
<td class='description'>Alternate socket hosts for connecting to a session for failover, where <strong>n</strong> is a positive integer. ie, SocketConnectHost1, SocketConnectHost2... must be consecutive and have a matching SocketConnectPort&lt;n&gt;</td>
<td class='valid'>Positive integer</td>
<td class='valid'>Valid IP address in the format of x.x.x.x or a domain name</td>
<td class='default'/>
</tr>
</table>

<a name='acceptor'></a>

###Acceptor

<table>
<tr>
<th>Setting</th>
<th>Description</th>
<th>Valid Values</th>
<th>Default</th>
</tr>

<tr>
<td class='setting'>SocketAcceptPort</td>
<td class='description'>Socket port for listening to incoming connections. Only used with acceptors.</td>
<td class='valid'>Positive integer, valid open socket port</td>
<td class='default'/>
</tr>

<tr>
<td class='setting'>SocketAcceptHost</td>
<td class='description'>Socket host for listening to incoming connections. If not provided, the acceptor will listen on all network interfaces (0.0.0.0)</td>
<td class='valid'>Valid IP address in the format of x.x.x.x</td>
<td class='default'>0.0.0.0</td>
</tr>
</table>

<a name='logging'></a>

###Logging

<table>
<tr>
<th>Setting</th>
<th>Description</th>
<th>Valid Values</th>
<th>Default</th>
</tr>

<tr>
<td class='setting'>FileLogPath</td>
<td class='description'>Directory to store logs.</td>
<td class='valid'>Valid directory for storing files, must have write access</td>
<td class='default'/>
</tr>


</table>

0 comments on commit 08d8cda

Please sign in to comment.