diff options
author | Peter Maydell | 2021-04-08 17:45:31 +0200 |
---|---|---|
committer | Peter Maydell | 2021-04-08 17:45:31 +0200 |
commit | ce69aa92d71e13db9c3702a8e8305e8d2463aeb8 (patch) | |
tree | db523c9f40dd1e69e3f0a829d20eb36898c25597 /include/qapi/hmp-output-visitor.h | |
parent | Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20210407b'... (diff) | |
parent | tap-win32: correctly recycle buffers (diff) | |
download | qemu-ce69aa92d71e13db9c3702a8e8305e8d2463aeb8.tar.gz qemu-ce69aa92d71e13db9c3702a8e8305e8d2463aeb8.tar.xz qemu-ce69aa92d71e13db9c3702a8e8305e8d2463aeb8.zip |
Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging
# gpg: Signature made Thu 08 Apr 2021 10:34:24 BST
# gpg: using RSA key EF04965B398D6211
# gpg: Good signature from "Jason Wang (Jason Wang on RedHat) <jasowang@redhat.com>" [marginal]
# gpg: WARNING: This key is not certified with sufficiently trusted signatures!
# gpg: It is not certain that the signature belongs to the owner.
# Primary key fingerprint: 215D 46F4 8246 689E C77F 3562 EF04 965B 398D 6211
* remotes/jasowang/tags/net-pull-request:
tap-win32: correctly recycle buffers
Revert "qapi: net: Add query-netdev command"
Revert "tests: Add tests for query-netdev command"
Revert "net: Move NetClientState.info_str to dynamic allocations"
Revert "hmp: Use QAPI NetdevInfo in hmp_info_network"
Revert "net: Do not fill legacy info_str for backends"
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/qapi/hmp-output-visitor.h')
-rw-r--r-- | include/qapi/hmp-output-visitor.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/include/qapi/hmp-output-visitor.h b/include/qapi/hmp-output-visitor.h deleted file mode 100644 index 541e4002e3..0000000000 --- a/include/qapi/hmp-output-visitor.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * HMP string output Visitor - * - * Copyright Yandex N.V., 2021 - * - * This work is licensed under the terms of the GNU GPL, version 2 or later. - * See the COPYING file in the top-level directory. - * - */ - -#ifndef HMP_OUTPUT_VISITOR_H -#define HMP_OUTPUT_VISITOR_H - -#include "qapi/visitor.h" - -typedef struct HMPOutputVisitor HMPOutputVisitor; - -/** - * Create a HMP string output visitor for @obj - * - * Flattens dicts/structures, only shows arrays borders. - * - * Errors are not expected to happen. - * - * The caller is responsible for freeing the visitor with - * visit_free(). - */ -Visitor *hmp_output_visitor_new(char **result); - -#endif |