From 1c52bed5d00c558569d03e65de1c6a31f3ccd3cc Mon Sep 17 00:00:00 2001 From: Christian Kandeler <christian.kandeler@nokia.com> Date: Tue, 4 Oct 2011 14:21:37 +0200 Subject: [PATCH] SSH: Allow querying of IP protocol version. Change-Id: I97c8b89da8c8d46afb0bdc840627e142567d5d98 Reviewed-on: http://codereview.qt-project.org/5981 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com> --- src/libs/utils/ssh/sshconnection.cpp | 5 +++++ src/libs/utils/ssh/sshconnection.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/libs/utils/ssh/sshconnection.cpp b/src/libs/utils/ssh/sshconnection.cpp index 7e458e28f7c..dc3ab4ff55f 100644 --- a/src/libs/utils/ssh/sshconnection.cpp +++ b/src/libs/utils/ssh/sshconnection.cpp @@ -165,6 +165,11 @@ SshConnectionParameters SshConnection::connectionParameters() const return d->m_connParams; } +QAbstractSocket::NetworkLayerProtocol SshConnection::ipProtocolVersion() const +{ + return d->m_socket->localAddress().protocol(); +} + SshConnection::~SshConnection() { disconnect(); diff --git a/src/libs/utils/ssh/sshconnection.h b/src/libs/utils/ssh/sshconnection.h index 83493db53c6..eed00cce6ec 100644 --- a/src/libs/utils/ssh/sshconnection.h +++ b/src/libs/utils/ssh/sshconnection.h @@ -41,6 +41,7 @@ #include <QtCore/QObject> #include <QtCore/QSharedPointer> #include <QtCore/QString> +#include <QtNetwork/QAbstractSocket> namespace Utils { class SftpChannel; @@ -86,6 +87,7 @@ public: SshError errorState() const; QString errorString() const; SshConnectionParameters connectionParameters() const; + QAbstractSocket::NetworkLayerProtocol ipProtocolVersion() const; ~SshConnection(); QSharedPointer<SshRemoteProcess> createRemoteProcess(const QByteArray &command); -- GitLab