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/control_ng_flags_parser.h

20 lines
384 B

#ifndef _CONTROL_NG_FLAGS_PARSER_H_
#define _CONTROL_NG_FLAGS_PARSER_H_
#include <string.h>
#include "bencode.h"
#include "obj.h"
#include "str.h"
#include "call.h"
#include "call_interfaces.h"
/**
* Parse flags in raw format and return bencode.
* Syntax:
* rtpp_flags: flag1=<value>, flag2-<value> ...
*/
void parse_rtpp_flags(const str * rtpp_flags, sdp_ng_flags *);
#endif