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.
|
|
#ifndef _CALL_INTERFACES_H_
|
|
|
#define _CALL_INTERFACES_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include "str.h"
|
|
|
#include "bencode.h"
|
|
|
|
|
|
|
|
|
|
|
|
struct call;
|
|
|
struct call_stats;
|
|
|
|
|
|
|
|
|
|
|
|
void ng_call_stats(struct call *call, const str *fromtag, const str *totag, bencode_item_t *output,
|
|
|
struct call_stats *totals);
|
|
|
|
|
|
|
|
|
#endif
|