ei: add support for libei
This commit is contained in:
parent
084fe50259
commit
40e87f8f91
69 changed files with 4340 additions and 72 deletions
|
|
@ -585,6 +585,10 @@
|
|||
"tearing": {
|
||||
"description": "Configures the default tearing settings.\n\nThis can be overwritten for individual outputs.\n\nBy default, the tearing mode is `variant3`.\n\n- Example:\n\n ```toml\n tearing.mode = \"never\"\n ```\n",
|
||||
"$ref": "#/$defs/Tearing"
|
||||
},
|
||||
"libei": {
|
||||
"description": "Configures the libei settings.\n\n- Example:\n\n ```toml\n libei.enable-socket = true\n ```\n",
|
||||
"$ref": "#/$defs/Libei"
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
@ -967,6 +971,17 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Libei": {
|
||||
"description": "Describes libei settings.\n\n- Example:\n\n ```toml\n libei.enable-socket = \"true\"\n ```\n",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"enable-socket": {
|
||||
"type": "boolean",
|
||||
"description": "Enables or disables the unauthenticated libei socket.\n\nEven if the socket is disabled, application can still request access via the portal.\n\nThe default is `false`.\n"
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
},
|
||||
"LogLevel": {
|
||||
"type": "string",
|
||||
"description": "A log level.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue