blob: 871fa4695b484c3bd8d166d75de59c2133570a9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef NETDATA_WEBRTC_H
#define NETDATA_WEBRTC_H
#include "../../libnetdata/libnetdata.h"
int webrtc_new_connection(const char *sdp, BUFFER *wb);
void webrtc_close_all_connections();
void webrtc_initialize();
#endif //NETDATA_WEBRTC_H
|