blob: 9c879d1cfc8f72715e408557a7dcf63301301e1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GSS_MISC_H_INCLUDED
#define GSS_MISC_H_INCLUDED 1
#include <gssapi.h>
int recv_token(int s, gss_buffer_t tok);
int send_token(int s, gss_buffer_t tok);
void display_status(char *m, OM_uint32 maj_stat, OM_uint32 min_stat);
void display_ctx_flags(OM_uint32 flags);
#endif /* #ifndef GSS_MISC_H_INCLUDED */
|