1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Update: Added still stub files for fast events.

This commit is contained in:
Philipp Schafft 2018-06-06 12:11:02 +00:00
parent 680557abc7
commit 8cf3da1a92
3 changed files with 35 additions and 0 deletions

View File

@ -34,6 +34,7 @@ noinst_HEADERS = \
module.h \
reportxml.h \
listensocket.h \
fastevent.h \
event.h \
event_log.h \
event_exec.h \
@ -78,6 +79,7 @@ icecast_SOURCES = \
module.c \
reportxml.c \
listensocket.c \
fastevent.c \
format.c \
format_ogg.c \
format_mp3.c \

21
src/fastevent.c Normal file
View File

@ -0,0 +1,21 @@
/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2018, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
*/
/**
* Special fast event functions
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "fastevent.h"
#include "logging.h"
#define CATMODULE "fastevent"

12
src/fastevent.h Normal file
View File

@ -0,0 +1,12 @@
/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2018, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
*/
#ifndef __FASTEVENT_H__
#define __FASTEVENT_H__
#endif