Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Jan 12, 2024
1 parent 3610a74 commit b0146ca
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion modules/dtls_gw/rtpp_dtls_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,12 @@ rtpp_dtls_conn_rtp_send(struct rtpp_dtls_conn *self, struct pkt_proc_ctx *pktxp)
static int
rtpp_dtls_conn_srtp_recv(struct rtpp_dtls_conn *self, struct pkt_proc_ctx *pktxp)
{
int status, len;
int status;
#if defined(SRTP_PROTECT_LASTARG)
SRTP_PROTECT_LASTARG len;
#else
size_t len;
#endif
struct rtpp_dtls_conn_priv *pvt;

PUB2PVT(self, pvt);
Expand Down

0 comments on commit b0146ca

Please sign in to comment.