[BACK]Return to ssh-gss.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh-gss.h between version 1.1.4.1 and 1.1.4.2

version 1.1.4.1, 2003/09/16 20:50:44 version 1.1.4.2, 2004/03/04 18:18:16
Line 1 
Line 1 
   /*      $OpenBSD$       */
 /*  /*
  * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.   * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
  *   *
Line 37 
Line 38 
 #define SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE      63  #define SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE      63
 #define SSH2_MSG_USERAUTH_GSSAPI_ERROR                  64  #define SSH2_MSG_USERAUTH_GSSAPI_ERROR                  64
 #define SSH2_MSG_USERAUTH_GSSAPI_ERRTOK                 65  #define SSH2_MSG_USERAUTH_GSSAPI_ERRTOK                 65
   #define SSH2_MSG_USERAUTH_GSSAPI_MIC                    66
   
 #define SSH_GSS_OIDTYPE 0x06  #define SSH_GSS_OIDTYPE 0x06
   
Line 95 
Line 97 
 char *ssh_gssapi_last_error(Gssctxt *ctxt, OM_uint32 *maj, OM_uint32 *min);  char *ssh_gssapi_last_error(Gssctxt *ctxt, OM_uint32 *maj, OM_uint32 *min);
 void ssh_gssapi_build_ctx(Gssctxt **ctx);  void ssh_gssapi_build_ctx(Gssctxt **ctx);
 void ssh_gssapi_delete_ctx(Gssctxt **ctx);  void ssh_gssapi_delete_ctx(Gssctxt **ctx);
   OM_uint32 ssh_gssapi_sign(Gssctxt *, gss_buffer_t, gss_buffer_t);
 OM_uint32 ssh_gssapi_server_ctx(Gssctxt **ctx, gss_OID oid);  OM_uint32 ssh_gssapi_server_ctx(Gssctxt **ctx, gss_OID oid);
   void ssh_gssapi_buildmic(Buffer *, const char *, const char *, const char *);
   
 /* In the server */  /* In the server */
 int ssh_gssapi_userok(char *name);  int ssh_gssapi_userok(char *name);
   OM_uint32 ssh_gssapi_checkmic(Gssctxt *, gss_buffer_t, gss_buffer_t);
 void ssh_gssapi_do_child(char ***envp, u_int *envsizep);  void ssh_gssapi_do_child(char ***envp, u_int *envsizep);
 void ssh_gssapi_cleanup_creds(void *ignored);  void ssh_gssapi_cleanup_creds(void);
 void ssh_gssapi_storecreds(void);  void ssh_gssapi_storecreds(void);
   
 #endif /* GSSAPI */  #endif /* GSSAPI */

Legend:
Removed from v.1.1.4.1  
changed lines
  Added in v.1.1.4.2