You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/include/janus.h

23 lines
579 B

#ifndef __JANUS_H__
#define __JANUS_H__
struct websocket_conn;
struct websocket_message;
struct janus_session;
struct call_monologue;
struct call_media;
void janus_init(void);
void janus_free(void);
const char *websocket_janus_process(struct websocket_message *wm);
const char *websocket_janus_get(struct websocket_message *wm);
const char *websocket_janus_post(struct websocket_message *wm);
void janus_detach_websocket(struct janus_session *session, struct websocket_conn *wc);
void janus_rtc_up(struct call_monologue *);
void janus_media_up(struct call_media *);
#endif