~ubuntu-branches/ubuntu/precise/krb5/precise-updates

« back to all changes in this revision

Viewing changes to src/windows/gss/gss-misc.h

  • Committer: Package Import Robot
  • Author(s): Sam Hartman
  • Date: 2011-12-01 19:34:41 UTC
  • mfrom: (28.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20111201193441-9tipg3aru1jsidyv
Tags: 1.10+dfsg~alpha1-6
* Fix segfault with unknown hostnames in krb5_sname_to_principal,
  Closes: #650671
* Indicate that this library breaks libsmbclient versions that depend on
  krb5_locate_kdc, Closes: #650603, #650611

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 1994 by OpenVision Technologies, Inc.
3
 
 *
4
 
 * Permission to use, copy, modify, distribute, and sell this software
5
 
 * and its documentation for any purpose is hereby granted without fee,
6
 
 * provided that the above copyright notice appears in all copies and
7
 
 * that both that copyright notice and this permission notice appear in
8
 
 * supporting documentation, and that the name of OpenVision not be used
9
 
 * in advertising or publicity pertaining to distribution of the software
10
 
 * without specific, written prior permission. OpenVision makes no
11
 
 * representations about the suitability of this software for any
12
 
 * purpose.  It is provided "as is" without express or implied warranty.
13
 
 *
14
 
 * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15
 
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16
 
 * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17
 
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
18
 
 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
19
 
 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20
 
 * PERFORMANCE OF THIS SOFTWARE.
21
 
 */
22
 
 
23
 
/*
24
 
 * $Id: gss-misc.h 23100 2009-10-31 00:48:38Z tlyu $
25
 
 */
26
 
 
27
 
#ifndef _GSSMISC_H_
28
 
#define _GSSMISC_H_
29
 
 
30
 
#include <gssapi/gssapi_generic.h>
31
 
#include <stdio.h>
32
 
 
33
 
extern FILE *display_file;
34
 
 
35
 
int send_token
36
 
        (int s, int flags, gss_buffer_t tok);
37
 
int recv_token
38
 
        (int s, int *flags, gss_buffer_t tok);
39
 
void display_status
40
 
        (char *msg, OM_uint32 maj_stat, OM_uint32 min_stat);
41
 
void display_ctx_flags
42
 
        (OM_uint32 flags);
43
 
void print_token
44
 
        (gss_buffer_t tok);
45
 
 
46
 
/* Token types */
47
 
#define TOKEN_NOOP              (1<<0)
48
 
#define TOKEN_CONTEXT           (1<<1)
49
 
#define TOKEN_DATA              (1<<2)
50
 
#define TOKEN_MIC               (1<<3)
51
 
 
52
 
/* Token flags */
53
 
#define TOKEN_CONTEXT_NEXT      (1<<4)
54
 
#define TOKEN_WRAPPED           (1<<5)
55
 
#define TOKEN_ENCRYPTED         (1<<6)
56
 
#define TOKEN_SEND_MIC          (1<<7)
57
 
 
58
 
extern gss_buffer_t empty_token;
59
 
 
60
 
#endif