diff --git a/daemon/call_interfaces.c b/daemon/call_interfaces.c index c0ca3001a..e3d37589f 100644 --- a/daemon/call_interfaces.c +++ b/daemon/call_interfaces.c @@ -433,8 +433,6 @@ static void call_ng_process_flags(struct sdp_ng_flags *out, bencode_item_t *inpu for (it = list->child; it; it = it->sibling) { if (!bencode_strcmp(it, "trust address")) out->trust_address = 1; - else if (!bencode_strcmp(it, "symmetric")) - out->symmetric = 1; else if (!bencode_strcmp(it, "asymmetric")) out->asymmetric = 1; else if (!bencode_strcmp(it, "trust-address")) diff --git a/daemon/sdp.h b/daemon/sdp.h index 43732a6f0..becb825f8 100644 --- a/daemon/sdp.h +++ b/daemon/sdp.h @@ -19,7 +19,6 @@ struct sdp_ng_flags { enum stream_direction directions[2]; int address_family; int asymmetric:1, - symmetric:1, trust_address:1, replace_origin:1, replace_sess_conn:1,