Browse Source

move private struct .h -> .c

git.mgm/mediaproxy-ng/github/master
Richard Fuchs 13 years ago
parent
commit
1507dd3aca
2 changed files with 8 additions and 5 deletions
  1. +8
    -0
      daemon/rtp.c
  2. +0
    -5
      daemon/rtp.h

+ 8
- 0
daemon/rtp.c View File

@ -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;


+ 0
- 5
daemon/rtp.h View File

@ -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));


Loading…
Cancel
Save