Files
ocserv/src/auth/openidconnect.h
T
Dimitri Papadopoulos a2ec3bba9c Consistent include files and directives
* Import system headers as `#include <...>`.
* Import local headers as `#include "..."`.
* Use consistent header guards (starting with `OC_`).

Signed-off-by: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com>
2026-06-06 15:23:54 +02:00

24 lines
668 B
C

/*
* Copyright (C) 2020 Microsoft Corporation
*
* Author: Alan Jowett
*
* This file is part of ocserv.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
#ifndef OC_AUTH_OPENIDCONNECT_H
#define OC_AUTH_OPENIDCONNECT_H
#include "sec-mod-auth.h"
extern const struct auth_mod_st oidc_auth_funcs;
#endif