1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00
icecast-server/src/auth_anonymous.c
2018-11-26 07:42:05 +00:00

36 lines
738 B
C

/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2014-2015, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
*/
/**
* Client authentication functions
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "auth.h"
#include "client.h"
#include "logging.h"
#define CATMODULE "auth_anonymous"
static auth_result anonymous_auth(auth_client *auth_user)
{
(void)auth_user;
return AUTH_OK;
}
int auth_get_anonymous_auth(auth_t *authenticator, config_options_t *options)
{
(void)options;
authenticator->authenticate_client = anonymous_auth;
authenticator->immediate = 1;
return 0;
}