From bfa3c89317869ffe1e90b7e01e7cacad7a7ea10e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 13 Aug 2020 12:09:28 +0200 Subject: mausezahn: make needlessly global variables static Move variables only used withing a single compilation unit from mz.h and make them static. This avoids "multiple definition of symbol" linker errors with gcc-10. Updates #216 Signed-off-by: Tobias Klauser --- staging/rcv_rtp.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'staging/rcv_rtp.c') diff --git a/staging/rcv_rtp.c b/staging/rcv_rtp.c index 0a91155..f43b92c 100644 --- a/staging/rcv_rtp.c +++ b/staging/rcv_rtp.c @@ -39,6 +39,25 @@ #include "mz.h" #include "mops.h" +static enum rtp_display_mode { + BAR, NCURSES, TEXT +} rtp_dm; + +static int32_t + time0, + jitter_rfc; + +static struct mz_timestamp + timeTX[TIME_COUNT_MAX], + timeRX[TIME_COUNT_MAX]; + +static u_int32_t + drop, // packet drop count + dis, // packet disorder count + gtotal; // counts number of file write cycles (see "got_rtp_packet()") + +static char rtp_filter_str[64]; + // Initialize the rcv_rtp process: Read user parameters and initialize globals int rcv_rtp_init(void) { -- cgit v1.2.3-54-g00ecf '>packet-rx-pump-back net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines