-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from UlfBj/main
Data compression support
- Loading branch information
Showing
8 changed files
with
253 additions
and
958 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
# | ||
# The server capabilities declaration. | ||
# | ||
Server: | ||
type: branch | ||
description: Root for the server capabilities. | ||
|
||
Server.Support: | ||
type: branch | ||
description: Top branch declaring the server supported features. | ||
|
||
Server.Support.Protocol: | ||
type: attribute | ||
datatype: string[] | ||
description: List of supported transport protocols. | ||
|
||
Server.Support.Security: | ||
type: attribute | ||
datatype: string[] | ||
description: List of supported security related features. | ||
|
||
Server.Support.Filter: | ||
type: attribute | ||
datatype: string[] | ||
description: List of supported filter features. | ||
|
||
Server.Config: | ||
type: branch | ||
description: Top branch declaring the configuration of server supported features. | ||
|
||
Server.Config.Protocol: | ||
type: branch | ||
description: Top branch declaring the configuration of server supported protocols. | ||
|
||
Server.Config.Protocol.Http: | ||
type: branch | ||
description: Top branch for the server supported HTTP protocol. | ||
|
||
Server.Config.Protocol.Http.Primary: | ||
type: branch | ||
description: HTTP configuration for the primary payload format. | ||
|
||
Server.Config.Protocol.Http.Primary.PortNum: | ||
type: attribute | ||
datatype: uint32 | ||
description: HTTP port number for the primary payload format. | ||
|
||
Server.Config.Protocol.Websocket: | ||
type: branch | ||
description: Top branch for the server supported Websocket protocol. | ||
|
||
Server.Config.Protocol.Websocket.Primary: | ||
type: branch | ||
description: Websocket configuration for the primary payload format. | ||
|
||
Server.Config.Protocol.Websocket.Primary.PortNum: | ||
type: attribute | ||
datatype: uint32 | ||
description: Websocket protocol port number for the primary payload format. | ||
|
||
Server.Config.Protocol.Websocket.Protobuf: | ||
type: branch | ||
description: Websocket configuration for the protobuf encoded payload format. | ||
|
||
Server.Config.Protocol.Websocket.Protobuf.PortNum: | ||
type: attribute | ||
datatype: uint32 | ||
description: Websocket protocol port number for the protobuf encoded payload format. | ||
|
||
Server.Config.Protocol.Mqtt: | ||
type: branch | ||
description: Top branch for the server supported MQTT protocol. | ||
|
||
Server.Config.Protocol.Mqtt.PortNum: | ||
type: attribute | ||
datatype: uint32 | ||
description: MQTT port number. | ||
|
||
Server.Config.Protocol.Mqtt.Primary: | ||
type: branch | ||
description: MQTT configuration for the primary payload format. | ||
|
||
Server.Config.Protocol.Mqtt.Primary.Topic: | ||
type: attribute | ||
datatype: string | ||
description: MQTT topic name for the primary payload format. | ||
|
||
Server.Config.Protocol.Mqtt.Protobuf: | ||
type: branch | ||
description: MQTT configuration for the protobuf encoded payload format. | ||
|
||
Server.Config.Protocol.Mqtt.Protobuf.Topic: | ||
type: attribute | ||
datatype: string | ||
description: MQTT topic name for the protobuf encoded payload format. | ||
|
||
Server.Config.Protocol.Grpc: | ||
type: branch | ||
description: Top branch for the server supported gRPC protocol. | ||
|
||
Server.Config.Protocol.Grpc.Protobuf: | ||
type: branch | ||
description: gRPC configuration with the protobuf encoded payload format. | ||
|
||
Server.Config.Protocol.Grpc.Protobuf.PortNum: | ||
type: attribute | ||
datatype: uint32 | ||
description: gRPC port number for the protobuf encoded payload format. | ||
|
||
Server.Config.AccessControl: | ||
type: branch | ||
description: Access control configuration. | ||
|
||
Server.Config.AccessControl.AgtsUrl: | ||
type: attribute | ||
datatype: string | ||
description: Access Grant Token Server URL including port number and path. | ||
|
||
Server.Config.AccessControl.AtsPortNum: | ||
type: attribute | ||
datatype: uint32 | ||
description: Access Token Server port number. | ||
|
||
Server.Config.AccessControl.Flow: | ||
type: attribute | ||
datatype: string | ||
description: Supported access control flows. | ||
|
||
Server.Config.Consent: | ||
type: branch | ||
description: Consent configuration. | ||
|
||
Server.Config.Consent.Ecf: | ||
type: attribute | ||
datatype: string | ||
description: External Consent Framework description. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters