~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/security/gss/sge_gsslib.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __SGE_GSSLIB_H
 
3
#define __SGE_GSSLIB_H
 
4
/*___INFO__MARK_BEGIN__*/
 
5
/*************************************************************************
 
6
 * 
 
7
 *  The Contents of this file are made available subject to the terms of
 
8
 *  the Sun Industry Standards Source License Version 1.2
 
9
 * 
 
10
 *  Sun Microsystems Inc., March, 2001
 
11
 * 
 
12
 * 
 
13
 *  Sun Industry Standards Source License Version 1.2
 
14
 *  =================================================
 
15
 *  The contents of this file are subject to the Sun Industry Standards
 
16
 *  Source License Version 1.2 (the "License"); You may not use this file
 
17
 *  except in compliance with the License. You may obtain a copy of the
 
18
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
19
 * 
 
20
 *  Software provided under this License is provided on an "AS IS" basis,
 
21
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
22
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
23
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
24
 *  See the License for the specific provisions governing your rights and
 
25
 *  obligations concerning the Software.
 
26
 * 
 
27
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
28
 * 
 
29
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
30
 * 
 
31
 *   All Rights Reserved.
 
32
 * 
 
33
 ************************************************************************/
 
34
/*___INFO__MARK_END__*/
 
35
 
 
36
#define GSSLIB_INTSIZE 4
 
37
#if defined(_UNICOS)
 
38
#define GSSLIB_INTOFF 4 /* sizeof(int) = 8 */
 
39
#else
 
40
#define GSSLIB_INTOFF 0 /* everybody else */
 
41
#endif
 
42
 
 
43
void gsslib_packint(u_long hostlong, char *buf);
 
44
u_long gsslib_unpackint(char *buf);
 
45
void gsslib_display_status( char *msg, OM_uint32 maj_stat, OM_uint32 min_stat);
 
46
void gsslib_reset_error(void);
 
47
char *gsslib_print_error(char *msg);
 
48
char *gsslib_error(void);
 
49
void gsslib_display_ctx_flags(OM_uint32 flags);
 
50
int gsslib_get_credentials(char *service_name, gss_buffer_desc *cred,
 
51
                           gss_cred_id_t client_cred);
 
52
int gsslib_acquire_client_credentials(gss_cred_id_t *client_creds);
 
53
int gsslib_acquire_server_credentials(char *service_name,
 
54
                                      gss_cred_id_t *server_creds);
 
55
int gsslib_put_credentials(gss_cred_id_t server_creds,
 
56
                           gss_buffer_desc *cred,
 
57
                           char *username);
 
58
void gsslib_verbose(int verbosity);
 
59
 
 
60
#ifdef DCE
 
61
sec_login_flags_t
 
62
sec_login_get_context_flags(sec_login_handle_t *login_context,
 
63
                            error_status_t *status);
 
64
void
 
65
sec_login_set_context_flags(sec_login_handle_t *login_context,
 
66
                            sec_login_flags_t flags,
 
67
                            error_status_t *status);
 
68
#endif
 
69
 
 
70
#if 0
 
71
#define SERVICE_NAME "sge"
 
72
#else
 
73
#define SERVICE_NAME "sge"
 
74
#endif
 
75
 
 
76
#ifdef KERBEROS
 
77
#define GSSAPI_INT OM_uint32
 
78
#else
 
79
#define GSSAPI_INT int
 
80
#endif
 
81
 
 
82
#endif /* __SGE_GSSLIB_H */
 
83