]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/charon-tkm/src/ehandler/eh_callbacks.h
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / charon-tkm / src / ehandler / eh_callbacks.h
CommitLineData
270b321e
RB
1/*
2 * Copyright (C) 2012 Reto Buerki
3 * Copyright (C) 2012 Adrian-Ken Rueegsegger
19ef2aec
TB
4 *
5 * Copyright (C) secunet Security Networks AG
270b321e
RB
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * for more details.
16 */
17
7f21523a
AKR
18/**
19 * @defgroup tkm-ehandler exception handler
20 * @{ @ingroup tkm
21 *
22 * The exception handler callback is registered as global exception action in
23 * the Ada runtime. If an exception is raised in Ada code this callback is
24 * executed.
25 */
26
270b321e
RB
27#ifndef EH_CALLBACKS_H_
28#define EH_CALLBACKS_H_
29
30/**
31 * Log given message and terminate charon.
32 */
33void charon_terminate(char *msg);
34
7f21523a 35#endif /** EH_CALLBACKS_H_ @}*/