mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 11:08:25 +00:00
migration: rename functions to starting migrations
Apply the following renames for starting incoming migration: process_incoming_migration -> migration_fd_process_incoming migration_set_incoming_channel -> migration_channel_process_incoming migration_tls_set_incoming_channel -> migration_tls_channel_process_incoming and for starting outgoing migration: migration_set_outgoing_channel -> migration_channel_connect migration_tls_set_outgoing_channel -> migration_tls_channel_connect Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 1464776234-9910-3-git-send-email-berrange@redhat.com Message-Id: <1464776234-9910-3-git-send-email-berrange@redhat.com> Signed-off-by: Amit Shah <amit.shah@redhat.com>
This commit is contained in:
committed by
Amit Shah
parent
bdbba12b6f
commit
22724f4921
@@ -72,14 +72,14 @@ static void migration_tls_incoming_handshake(Object *src,
|
||||
error_report("%s", error_get_pretty(err));
|
||||
} else {
|
||||
trace_migration_tls_incoming_handshake_complete();
|
||||
migration_set_incoming_channel(migrate_get_current(), ioc);
|
||||
migration_channel_process_incoming(migrate_get_current(), ioc);
|
||||
}
|
||||
object_unref(OBJECT(ioc));
|
||||
}
|
||||
|
||||
void migration_tls_set_incoming_channel(MigrationState *s,
|
||||
QIOChannel *ioc,
|
||||
Error **errp)
|
||||
void migration_tls_channel_process_incoming(MigrationState *s,
|
||||
QIOChannel *ioc,
|
||||
Error **errp)
|
||||
{
|
||||
QCryptoTLSCreds *creds;
|
||||
QIOChannelTLS *tioc;
|
||||
@@ -119,16 +119,16 @@ static void migration_tls_outgoing_handshake(Object *src,
|
||||
migrate_fd_error(s, err);
|
||||
} else {
|
||||
trace_migration_tls_outgoing_handshake_complete();
|
||||
migration_set_outgoing_channel(s, ioc, NULL);
|
||||
migration_channel_connect(s, ioc, NULL);
|
||||
}
|
||||
object_unref(OBJECT(ioc));
|
||||
}
|
||||
|
||||
|
||||
void migration_tls_set_outgoing_channel(MigrationState *s,
|
||||
QIOChannel *ioc,
|
||||
const char *hostname,
|
||||
Error **errp)
|
||||
void migration_tls_channel_connect(MigrationState *s,
|
||||
QIOChannel *ioc,
|
||||
const char *hostname,
|
||||
Error **errp)
|
||||
{
|
||||
QCryptoTLSCreds *creds;
|
||||
QIOChannelTLS *tioc;
|
||||
|
||||
Reference in New Issue
Block a user