[WIP] Refactor domain_server json

This commit is contained in:
2021-03-24 18:55:58 +01:00
parent 76beb3fcb6
commit be6508ae96

View File

@ -85,9 +85,24 @@ There are two ways to discover all Domain Servers of a given Domain:
```json ```json
{ {
"domain_servers": [ "domain_servers": [
{"host": "usimp1.example.com", "priority": 10, "weight": 10, "protocols": {"http": 80, "https": 443, "ws": 80, "wss": 443}}, {
{"host": "usimp2.example.com", "priority": 10, "weight": 20, "protocols": {"http": 80, "https": 443, "ws": 80, "wss": 443}}, "host": "usimp1.example.com",
{"host": "usimp.test.com", "priority": 20, "weight": 0, "protocols": {"http": 80, "https": 443}} "priority": 10,
"weight": 10,
"protocols": {"http": 80, "https": 443, "ws": 80, "wss": 443}
},
{
"host": "usimp2.example.com",
"priority": 10,
"weight": 20,
"protocols": {"http": 80, "https": 443, "ws": 80, "wss": 443}
},
{
"host": "usimp.test.com",
"priority": 20,
"weight": 0,
"protocols": {"http": 80, "https": 443}
}
] ]
} }
``` ```
@ -133,5 +148,5 @@ There are two ways to discover all Domain Servers of a given Domain:
Following protocols may be used to transport USIMP messages between USIMP participants: Following protocols may be used to transport USIMP messages between USIMP participants:
* [*Hypertext Transfer Protocol* (HTTP) and HTTPS](transport/http.md) (HTTP required, HTTPS optional) * [*Hypertext Transfer Protocol* (HTTP) and HTTPS](transport/http.md) (HTTP required, HTTPS optional)
* [*WebSocket Protocol* (WS) AND WSS](transport/websocket.md) (optional) * [*WebSocket Protocol* (WS) and WSS](transport/websocket.md) (optional)
* [*User Datagram Protocol* (UDP)](transport/udp.md) (optional) * [*User Datagram Protocol* (UDP)](transport/udp.md) (optional)