gsasl  2.2.0
About: GNU SASL is an implementation of the Simple Authentication and Security Layer (SASL).
  Fossies Dox: gsasl-2.2.0.tar.gz  ("unofficial" and yet experimental doxygen-generated source code documentation)  

Loading...
Searching...
No Matches
xfinish.c
Go to the documentation of this file.
1/* xfinish.c --- Finish libgsasl session.
2 * Copyright (C) 2002-2022 Simon Josefsson
3 *
4 * This file is part of GNU SASL Library.
5 *
6 * GNU SASL Library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1 of
9 * the License, or (at your option) any later version.
10 *
11 * GNU SASL Library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License License along with GNU SASL Library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
20 *
21 */
22
23#include "internal.h"
24
25/**
26 * gsasl_finish:
27 * @sctx: libgsasl session handle.
28 *
29 * Destroy a libgsasl client or server handle. The handle must not be
30 * used with other libgsasl functions after this call.
31 **/
32void
34{
35 if (sctx == NULL)
36 return;
37
38 if (sctx->clientp)
39 {
40 if (sctx->mech && sctx->mech->client.finish)
41 sctx->mech->client.finish (sctx, sctx->mech_data);
42 }
43 else
44 {
45 if (sctx->mech && sctx->mech->server.finish)
46 sctx->mech->server.finish (sctx, sctx->mech_data);
47 }
48
49 free (sctx->anonymous_token);
50 free (sctx->authid);
51 free (sctx->authzid);
52 free (sctx->password);
53 free (sctx->passcode);
54 free (sctx->pin);
55 free (sctx->suggestedpin);
56 free (sctx->service);
57 free (sctx->hostname);
59 free (sctx->realm);
61 free (sctx->qops);
62 free (sctx->qop);
63 free (sctx->scram_iter);
64 free (sctx->scram_salt);
66 free (sctx->scram_serverkey);
67 free (sctx->scram_storedkey);
68 free (sctx->cb_tls_unique);
69 free (sctx->cb_tls_exporter);
74 /* If you add anything here, remember to change change map() in
75 property.c and Gsasl_session in internal.h. */
76
77 free (sctx);
78}
_GL_EXTERN_C void free(void *)
Gsasl_finish_function finish
Definition: gsasl-mech.h:157
struct Gsasl_mechanism_functions server
Definition: gsasl-mech.h:176
struct Gsasl_mechanism_functions client
Definition: gsasl-mech.h:175
void * mech_data
Definition: internal.h:57
char * qops
Definition: internal.h:73
Gsasl_mechanism * mech
Definition: internal.h:56
char * hostname
Definition: internal.h:69
char * authid
Definition: internal.h:62
char * openid20_redirect_url
Definition: internal.h:84
char * service
Definition: internal.h:68
char * qop
Definition: internal.h:74
char * cb_tls_exporter
Definition: internal.h:81
char * scram_salted_password
Definition: internal.h:77
char * gssapi_display_name
Definition: internal.h:70
char * pin
Definition: internal.h:66
char * cb_tls_unique
Definition: internal.h:80
char * scram_storedkey
Definition: internal.h:79
char * saml20_redirect_url
Definition: internal.h:83
char * scram_salt
Definition: internal.h:76
char * scram_iter
Definition: internal.h:75
char * passcode
Definition: internal.h:65
char * anonymous_token
Definition: internal.h:61
char * password
Definition: internal.h:64
char * openid20_outcome_data
Definition: internal.h:85
char * suggestedpin
Definition: internal.h:67
char * digest_md5_hashed_password
Definition: internal.h:72
char * authzid
Definition: internal.h:63
char * realm
Definition: internal.h:71
char * scram_serverkey
Definition: internal.h:78
char * saml20_idp_identifier
Definition: internal.h:82
void gsasl_finish(Gsasl_session *sctx)
Definition: xfinish.c:33