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

Feature: Added stub src/reportxml_helper.[ch]

This commit is contained in:
Philipp Schafft 2020-10-03 08:51:22 +00:00
parent b1c4b9ac49
commit 44af32bac5
3 changed files with 39 additions and 0 deletions

View File

@ -34,6 +34,7 @@ noinst_HEADERS = \
buffer.h \
module.h \
reportxml.h \
reportxml_helper.h \
listensocket.h \
fastevent.h \
event.h \
@ -80,6 +81,7 @@ icecast_SOURCES = \
buffer.c \
module.c \
reportxml.c \
reportxml_helper.c \
listensocket.c \
fastevent.c \
format.c \

21
src/reportxml_helper.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-2020, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
*/
/**
* This file contains helper functions for report XML document parsing, manipulation, and rendering.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "reportxml_helper.h"
#include "logging.h"
#define CATMODULE "reportxml-helper"

16
src/reportxml_helper.h Normal file
View File

@ -0,0 +1,16 @@
/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2020, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
*/
/* This file contains helper functions for report XML document parsing, manipulation, and rendering. */
#ifndef __REPORTXML_HELPER_H__
#define __REPORTXML_HELPER_H__
#include "reportxml.h"
#endif