Lines Matching refs:policy
14 struct srtp_policy_t *next; /**< Pointer to next stream policy. */
69 policy.ssrc.type = ssrc_any_inbound;
70 policy.ekt = NULL;
71 policy.window_size = 128;
72 + policy.allow_repeat_tx = 0;
73 policy.next = NULL;
75 err = srtp_add_stream(s, &policy);
80 policy.key = (uint8_t *) key;
81 policy.next = NULL;
82 policy.window_size = 128;
83 + policy.allow_repeat_tx = 0;
84 policy.rtp.sec_serv = sec_servs;
85 policy.rtcp.sec_serv = sec_serv_none; /* we don't do RTCP anyway */
88 policy.rtcp.auth_tag_len = 0;
89 policy.rtcp.sec_serv = sec_serv_none;
90 policy.window_size = 0;
91 + policy.allow_repeat_tx = 0;
92 policy.next = NULL;
99 policy.key = test_key;
100 policy.ekt = NULL;
101 policy.window_size = 128;
102 + policy.allow_repeat_tx = 0;
103 policy.next = NULL;
125 /* loop over streams in session, printing the policy of each */
147 policy.key = test_key;
148 policy.ekt = NULL;
149 policy.window_size = 128;
150 + policy.allow_repeat_tx = 0;
151 policy.next = NULL;
153 status = srtp_create(&srtp_snd, &policy);