MySQL 8.4.0
Source Code Documentation
service_srv_session_bits.h
Go to the documentation of this file.
1/* Copyright (c) 2019, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef MYSQL_SRV_SESSION_SERVICE_BITS_INCLUDED
25#define MYSQL_SRV_SESSION_SERVICE_BITS_INCLUDED
26
27/**
28 @file
29 These are the common definitions between the plugin service for sessions
30 and the component service extension for sessions.
31 Note that this file is part of both the PLUGIN API/ABI and the component
32 service API.
33*/
34
35#ifdef __cplusplus
36class Srv_session;
38#else
39struct Srv_session;
40typedef struct Srv_session *MYSQL_SESSION;
41#endif
42
43typedef void (*srv_session_error_cb)(void *ctx, unsigned int sql_errno,
44 const char *err_msg);
45
46#endif // MYSQL_SRV_SESSION_SERVICE_BITS_INCLUDED
Definition: srv_session.h:56
class Srv_session * MYSQL_SESSION
Definition: service_srv_session_bits.h:37
void(* srv_session_error_cb)(void *ctx, unsigned int sql_errno, const char *err_msg)
Definition: service_srv_session_bits.h:43