Changes between Version 9 and Version 10 of Documentation/Configuration


Ignore:
Timestamp:
Feb 4, 2010, 5:13:18 PM (14 years ago)
Author:
Christoph Mayer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Configuration

    v9 v10  
    5353== Endpoint format ==
    5454
     55The format of the {{{endpoints}}} property that you can set on the {{{AribaModule}}} object is:
     56{{{
     57protocol1{address1};protocol2{address2};...
     58}}}
     59Exemplarily you can set the tcp port to 5003 using
     60{{{
     61tcp{5003}
     62}}}
     63and the local IP address to bind to 192.168.1.2 using
     64{{{
     65ip{192.168.1.2}
     66}}}
     67If you have several values, e.g. an IPv4 and an IPv6 address you  can use the {{{|}}} operator:
     68ip{192.168.1.2 | 2001:0DB8:AC10:FE01::}
     69
     70Available endpoint protocols and their addresses are:
     71 * {{{ip}}} - IPv4 and/or IPv6 address, e.g. 192.168.1.2 or 2001:0DB8:AC10:FE01::
     72 * {{{tcp}}} - TCP listen port, e.g. 5003
     73 * {{{bluetooth}}} - MAC address, e.g. 00:18:fe:23:ab:22
     74 * {{{rfcomm}}} - RFCOMM channel, e.g. 10
     75
     76You can use multiple such {{{protocol{address}}}} definitions and append them using {{{;}}}
    5577
    5678== Bootstrap hints ==