1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

Feature: Added stubs for event_stream.[ch]

This commit is contained in:
Philipp Schafft 2024-01-24 11:20:30 +00:00
parent 64ab166225
commit ae0e8e0183
3 changed files with 39 additions and 0 deletions

View File

@ -47,6 +47,7 @@ noinst_HEADERS = \
fastevent.h \
navigation.h \
event.h \
event_stream.h \
ping.h \
acl.h auth.h \
metadata_xiph.h \
@ -114,6 +115,7 @@ icecast_SOURCES = \
format_skeleton.c \
format_opus.c \
event.c \
event_stream.c \
event_log.c \
event_exec.c \
acl.c \

23
src/event_stream.c Normal file
View File

@ -0,0 +1,23 @@
/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2024 , Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <igloo/ro.h>
#include <igloo/error.h>
#include "event_stream.h"
#include "string_renderer.h"
#include "json.h"
#include "global.h"
#include "errors.h"
#include "logging.h"
#define CATMODULE "event-stream"

14
src/event_stream.h Normal file
View File

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