From b9cf00b1111048fc0e359c83a5abdb1511988dd7 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 7 May 2014 10:41:46 -0400 Subject: [PATCH] obsolete the "symmetric" flag --- daemon/call_interfaces.c | 2 -- daemon/sdp.h | 1 - 2 files changed, 3 deletions(-) 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,