2021-03-18 16:55:10 +01:00
|
|
|
# -*- Mode: Python -*-
|
2021-12-20 15:56:24 +01:00
|
|
|
# vim: filetype=python
|
2021-03-18 16:55:10 +01:00
|
|
|
|
|
|
|
##
|
|
|
|
# = Compatibility policy
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# @CompatPolicyInput:
|
|
|
|
#
|
|
|
|
# Policy for handling "funny" input.
|
|
|
|
#
|
|
|
|
# @accept: Accept silently
|
|
|
|
# @reject: Reject with an error
|
2021-03-18 16:55:19 +01:00
|
|
|
# @crash: abort() the process
|
2021-03-18 16:55:10 +01:00
|
|
|
#
|
|
|
|
# Since: 6.0
|
|
|
|
##
|
|
|
|
{ 'enum': 'CompatPolicyInput',
|
2021-03-18 16:55:19 +01:00
|
|
|
'data': [ 'accept', 'reject', 'crash' ] }
|
2021-03-18 16:55:10 +01:00
|
|
|
|
|
|
|
##
|
|
|
|
# @CompatPolicyOutput:
|
|
|
|
#
|
|
|
|
# Policy for handling "funny" output.
|
|
|
|
#
|
|
|
|
# @accept: Pass on unchanged
|
|
|
|
# @hide: Filter out
|
|
|
|
#
|
|
|
|
# Since: 6.0
|
|
|
|
##
|
|
|
|
{ 'enum': 'CompatPolicyOutput',
|
|
|
|
'data': [ 'accept', 'hide' ] }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @CompatPolicy:
|
|
|
|
#
|
|
|
|
# Policy for handling deprecated management interfaces.
|
|
|
|
#
|
|
|
|
# This is intended for testing users of the management interfaces.
|
|
|
|
#
|
|
|
|
# Limitation: covers only syntactic aspects of QMP, i.e. stuff tagged
|
|
|
|
# with feature 'deprecated'. We may want to extend it to cover
|
2022-02-25 09:45:38 +01:00
|
|
|
# semantic aspects and CLI.
|
2021-03-18 16:55:10 +01:00
|
|
|
#
|
2021-10-25 06:24:04 +02:00
|
|
|
# Limitation: deprecated-output policy @hide is not implemented for
|
|
|
|
# enumeration values. They behave the same as with policy @accept.
|
2021-10-25 06:24:02 +02:00
|
|
|
#
|
2021-03-18 16:55:10 +01:00
|
|
|
# @deprecated-input: how to handle deprecated input (default 'accept')
|
|
|
|
# @deprecated-output: how to handle deprecated output (default 'accept')
|
2021-10-28 12:25:20 +02:00
|
|
|
# @unstable-input: how to handle unstable input (default 'accept')
|
|
|
|
# (since 6.2)
|
|
|
|
# @unstable-output: how to handle unstable output (default 'accept')
|
|
|
|
# (since 6.2)
|
2021-03-18 16:55:10 +01:00
|
|
|
#
|
|
|
|
# Since: 6.0
|
|
|
|
##
|
|
|
|
{ 'struct': 'CompatPolicy',
|
|
|
|
'data': { '*deprecated-input': 'CompatPolicyInput',
|
2021-10-28 12:25:20 +02:00
|
|
|
'*deprecated-output': 'CompatPolicyOutput',
|
|
|
|
'*unstable-input': 'CompatPolicyInput',
|
|
|
|
'*unstable-output': 'CompatPolicyOutput' } }
|