| 55 | The format of the {{{endpoints}}} property that you can set on the {{{AribaModule}}} object is: |
| 56 | {{{ |
| 57 | protocol1{address1};protocol2{address2};... |
| 58 | }}} |
| 59 | Exemplarily you can set the tcp port to 5003 using |
| 60 | {{{ |
| 61 | tcp{5003} |
| 62 | }}} |
| 63 | and the local IP address to bind to 192.168.1.2 using |
| 64 | {{{ |
| 65 | ip{192.168.1.2} |
| 66 | }}} |
| 67 | If you have several values, e.g. an IPv4 and an IPv6 address you can use the {{{|}}} operator: |
| 68 | ip{192.168.1.2 | 2001:0DB8:AC10:FE01::} |
| 69 | |
| 70 | Available 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 | |
| 76 | You can use multiple such {{{protocol{address}}}} definitions and append them using {{{;}}} |