ssh.c (42f71286cde4107ce6327244cc3c6442c5dc66a6) | ssh.c (fe5fd0173b1983e53ba8dbafb3229b37444e7986) |
---|---|
1/* 2 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * All rights reserved 5 * Created: Sat Mar 18 16:36:11 1995 ylo 6 * Ssh client program. This program can be used to log into a remote machine. 7 * The software supports strong authentication, encryption, and forwarding 8 * of X11, TCP/IP, and authentication connections. --- 281 unchanged lines hidden (view full) --- 290 options.use_privileged_port = 0; 291 break; 292 293 case 'a': 294 options.forward_agent = 0; 295 break; 296#ifdef AFS 297 case 'k': | 1/* 2 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * All rights reserved 5 * Created: Sat Mar 18 16:36:11 1995 ylo 6 * Ssh client program. This program can be used to log into a remote machine. 7 * The software supports strong authentication, encryption, and forwarding 8 * of X11, TCP/IP, and authentication connections. --- 281 unchanged lines hidden (view full) --- 290 options.use_privileged_port = 0; 291 break; 292 293 case 'a': 294 options.forward_agent = 0; 295 break; 296#ifdef AFS 297 case 'k': |
298 options.kerberos_tgt_passing = 0; | 298 options.krb4_tgt_passing = 0; 299 options.krb5_tgt_passing = 0; |
299 options.afs_token_passing = 0; 300 break; 301#endif 302 case 'i': 303 if (stat(optarg, &st) < 0) { 304 fprintf(stderr, "Warning: Identity file %s does not exist.\n", 305 optarg); 306 break; --- 502 unchanged lines hidden --- | 300 options.afs_token_passing = 0; 301 break; 302#endif 303 case 'i': 304 if (stat(optarg, &st) < 0) { 305 fprintf(stderr, "Warning: Identity file %s does not exist.\n", 306 optarg); 307 break; --- 502 unchanged lines hidden --- |