1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Feature: Added stub for ping requests

This commit is contained in:
Philipp Schafft 2023-02-26 21:30:37 +00:00
parent be51075975
commit e3f9f5b078
3 changed files with 28 additions and 0 deletions

View File

@ -45,6 +45,7 @@ noinst_HEADERS = \
fastevent.h \
navigation.h \
event.h \
ping.h \
acl.h auth.h \
metadata_xiph.h \
format.h \
@ -111,6 +112,7 @@ icecast_SOURCES = \
event.c \
event_log.c \
event_exec.c \
ping.c \
acl.c \
auth.c \
auth_htpasswd.c \

14
src/ping.c Normal file
View File

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

12
src/ping.h Normal file
View File

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