From 28e55560008f21a532b103b3f612c6fca2a54d76 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Fri, 26 Apr 2013 10:45:42 +0200 Subject: SSH: Use separate field for domain name in client requests Instead of appending @domain to names when the --domain option of sss_ssh_* is used, put domain name in a separate field in client requests. --- src/util/sss_ssh.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/util') diff --git a/src/util/sss_ssh.h b/src/util/sss_ssh.h index fec7c732b..1ba50a655 100644 --- a/src/util/sss_ssh.h +++ b/src/util/sss_ssh.h @@ -21,6 +21,10 @@ #ifndef _SSS_SSH_H_ #define _SSS_SSH_H_ +#define SSS_SSH_REQ_ALIAS 0x01 +#define SSS_SSH_REQ_DOMAIN 0x02 +#define SSS_SSH_REQ_MASK 0x03 + struct sss_ssh_pubkey { uint8_t *data; size_t data_len; -- cgit