aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2013-02-12 17:23:29 +0100
committerPablo Neira Ayuso <pablo@gnumonks.org>2013-02-12 17:24:13 +0100
commitc92810eccd491b9dfc7b1c2bb4dbc599ff04e9fe (patch)
tree7e4493bbd64cb3e551acd014f0904a1b6a0f3b4d /include
parent7ff7a5cd6da3ce40b4cb9daea90948a1ec1495e1 (diff)
osmux: remove arrays from osmux_out_handle
there will be one osmux_out_handle per endpoint.
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/netif/osmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/netif/osmux.h b/include/osmocom/netif/osmux.h
index 20b6123..d7ebf55 100644
--- a/include/osmocom/netif/osmux.h
+++ b/include/osmocom/netif/osmux.h
@@ -52,8 +52,8 @@ struct osmux_in_handle {
/* one per OSmux circuit_id, ie. one per RTP flow. */
struct osmux_out_handle {
- uint16_t rtp_seq[OSMUX_MAX_CONCURRENT_CALLS];
- uint32_t rtp_timestamp[OSMUX_MAX_CONCURRENT_CALLS];
+ uint16_t rtp_seq;
+ uint32_t rtp_timestamp;
};
static inline uint8_t *osmux_get_payload(struct osmux_hdr *osmuxh)