aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/netif/osmux.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/osmocom/netif/osmux.h b/include/osmocom/netif/osmux.h
index dd89973..f52fcb4 100644
--- a/include/osmocom/netif/osmux.h
+++ b/include/osmocom/netif/osmux.h
@@ -47,10 +47,12 @@ struct osmux_in_handle {
char *data; /* internal data */
};
+#define OSMUX_MAX_CONCURRENT_CALLS 8
+
/* one per OSmux circuit_id, ie. one per RTP flow. */
struct osmux_out_handle {
- uint16_t rtp_seq[8];
- uint32_t rtp_timestamp[8];
+ uint16_t rtp_seq[OSMUX_MAX_CONCURRENT_CALLS];
+ uint32_t rtp_timestamp[OSMUX_MAX_CONCURRENT_CALLS];
};
static inline uint8_t *osmux_get_payload(struct osmux_hdr *osmuxh)