mirror of https://gitee.com/openkylin/libvirt.git
qemu: monitor: Remove leftovers from password callback
The monitor password callback was removed long time ago but the callback type and variable were left around. Finish the cleanup. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
7680f3369a
commit
7892748350
|
@ -39,12 +39,6 @@ typedef qemuMonitor *qemuMonitorPtr;
|
|||
typedef struct _qemuMonitorMessage qemuMonitorMessage;
|
||||
typedef qemuMonitorMessage *qemuMonitorMessagePtr;
|
||||
|
||||
typedef int (*qemuMonitorPasswordHandler)(qemuMonitorPtr mon,
|
||||
qemuMonitorMessagePtr msg,
|
||||
const char *data,
|
||||
size_t len,
|
||||
void *opaque);
|
||||
|
||||
struct _qemuMonitorMessage {
|
||||
int txFD;
|
||||
|
||||
|
@ -62,9 +56,6 @@ struct _qemuMonitorMessage {
|
|||
* fatal error occurred on the monitor channel
|
||||
*/
|
||||
bool finished;
|
||||
|
||||
qemuMonitorPasswordHandler passwordHandler;
|
||||
void *passwordOpaque;
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in New Issue