From 1507dd3acac5b54116c1301195bbb2d3344d2d93 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 21 Jun 2013 12:25:55 -0400 Subject: [PATCH] move private struct .h -> .c --- daemon/rtp.c | 8 ++++++++ daemon/rtp.h | 5 ----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/daemon/rtp.c b/daemon/rtp.c index 7302d2ce2..a3ce49901 100644 --- a/daemon/rtp.c +++ b/daemon/rtp.c @@ -11,6 +11,14 @@ +struct rtp_extension { + u_int16_t undefined; + u_int16_t length; +} __attribute__ ((packed)); + + + + static inline int check_session_keys(struct crypto_context *c) { str s; diff --git a/daemon/rtp.h b/daemon/rtp.h index 3405b0a47..1e14c6cc7 100644 --- a/daemon/rtp.h +++ b/daemon/rtp.h @@ -17,11 +17,6 @@ struct rtp_header { u_int32_t ssrc; u_int32_t csrc[]; } __attribute__ ((packed)); -struct rtp_extension { - u_int16_t undefined; - u_int16_t length; -} __attribute__ ((packed)); -