From 8cf3da1a9215884793ffbbf44ecbf6a1884d7299 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 6 Jun 2018 12:11:02 +0000 Subject: [PATCH] Update: Added still stub files for fast events. --- src/Makefile.am | 2 ++ src/fastevent.c | 21 +++++++++++++++++++++ src/fastevent.h | 12 ++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 src/fastevent.c create mode 100644 src/fastevent.h diff --git a/src/Makefile.am b/src/Makefile.am index 6281f7d1..18758c0f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 \ diff --git a/src/fastevent.c b/src/fastevent.c new file mode 100644 index 00000000..be8e05b2 --- /dev/null +++ b/src/fastevent.c @@ -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 , + */ + +/** + * Special fast event functions + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "fastevent.h" + +#include "logging.h" +#define CATMODULE "fastevent" + diff --git a/src/fastevent.h b/src/fastevent.h new file mode 100644 index 00000000..6b07a5ec --- /dev/null +++ b/src/fastevent.h @@ -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 , + */ + +#ifndef __FASTEVENT_H__ +#define __FASTEVENT_H__ + +#endif