diff options
author | Jan Cholasta <jcholast@redhat.com> | 2013-04-26 10:45:42 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-05-07 14:23:51 +0200 |
commit | 28e55560008f21a532b103b3f612c6fca2a54d76 (patch) | |
tree | a32c61fc482cfbe873c2682cc5e7fce8a7868f2e /src/util | |
parent | 728b10c81204929be5669c1e67bd086e09c47c00 (diff) | |
download | sssd-28e55560008f21a532b103b3f612c6fca2a54d76.tar.gz sssd-28e55560008f21a532b103b3f612c6fca2a54d76.tar.xz sssd-28e55560008f21a532b103b3f612c6fca2a54d76.zip |
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.
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/sss_ssh.h | 4 |
1 files changed, 4 insertions, 0 deletions
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; |