diff options
Diffstat (limited to 'crypto-vala/vapi/libsrtp2.vapi')
-rw-r--r-- | crypto-vala/vapi/libsrtp2.vapi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto-vala/vapi/libsrtp2.vapi b/crypto-vala/vapi/libsrtp2.vapi index c0c50c1c..f8f2d297 100644 --- a/crypto-vala/vapi/libsrtp2.vapi +++ b/crypto-vala/vapi/libsrtp2.vapi @@ -42,9 +42,11 @@ public struct Policy { public uint8[] key; public ulong num_master_keys; public ulong window_size; - public int allow_repeat_tx; + [CCode (ctype = "int")] + public bool allow_repeat_tx; [CCode (array_length_cname = "enc_xtn_hdr_count")] public int[] enc_xtn_hdr; + public Policy* next; } [CCode (cname = "srtp_crypto_policy_t")] |