Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2021-01-13 18:58:58 +0300
committerAntenore Gatta <antenore@simbiosi.org>2021-01-15 15:33:34 +0300
commit2c749505fa99c70883a2dc0aacd496274804169a (patch)
tree588a303545817acd810e79fed201b75b1820d373 /src/remmina_file.h
parente97ecdad0cc7b9ecee54e48f6ed1c49bf7c4a27e (diff)
Fixing Password based authentication, introdcing PARTIAL auth
Diffstat (limited to 'src/remmina_file.h')
-rw-r--r--src/remmina_file.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/remmina_file.h b/src/remmina_file.h
index e3eac060d..59ebe8c49 100644
--- a/src/remmina_file.h
+++ b/src/remmina_file.h
@@ -47,6 +47,17 @@ struct _RemminaFile {
gboolean prevent_saving;
};
+/**
+ * used in remmina_ssh.c and remmina_ssh_plugin.c
+ *
+ * #define SSH_AUTH_METHOD_UNKNOWN 0x0000u
+ * #define SSH_AUTH_METHOD_NONE 0x0001u
+ * #define SSH_AUTH_METHOD_PASSWORD 0x0002u
+ * #define SSH_AUTH_METHOD_PUBLICKEY 0x0004u
+ * #define SSH_AUTH_METHOD_HOSTBASED 0x0008u
+ * #define SSH_AUTH_METHOD_INTERACTIVE 0x0010u
+ * #define SSH_AUTH_METHOD_GSSAPI_MIC 0x0020u
+ */
enum {
SSH_AUTH_PASSWORD, SSH_AUTH_PUBLICKEY, SSH_AUTH_AGENT, SSH_AUTH_AUTO_PUBLICKEY, SSH_AUTH_GSSAPI
};