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

17 lines
343 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"
/**
* Parse flags in raw format and return bencode.
* Syntax:
* rtpp_flags: flag1=<value>, flag2-<value> ...
*/
void parse_rtpp_flags(const str * rtpp_flags, bencode_item_t * dict);
#endif