mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
Feature: Added stub src/reportxml_helper.[ch]
This commit is contained in:
parent
b1c4b9ac49
commit
44af32bac5
@ -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
21
src/reportxml_helper.c
Normal 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
16
src/reportxml_helper.h
Normal 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
|
Loading…
Reference in New Issue
Block a user