mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 15:49:56 +00:00
Merged revisions 49006 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r49006 | kpfleming | 2006-12-27 16:06:56 -0600 (Wed, 27 Dec 2006) | 2 lines since these variables all have static duration, none of them need initializers (they default to zero anyway) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@49008 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
18
main/udptl.c
18
main/udptl.c
@@ -55,17 +55,17 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#define TRUE (!FALSE)
|
||||
#endif
|
||||
|
||||
static int udptlstart = 0;
|
||||
static int udptlend = 0;
|
||||
static int udptldebug = 0; /* Are we debugging? */
|
||||
static int udptlstart;
|
||||
static int udptlend;
|
||||
static int udptldebug; /* Are we debugging? */
|
||||
static struct sockaddr_in udptldebugaddr; /* Debug packets to/from this host */
|
||||
#ifdef SO_NO_CHECK
|
||||
static int nochecksums = 0;
|
||||
static int nochecksums;
|
||||
#endif
|
||||
static int udptlfectype = 0;
|
||||
static int udptlfecentries = 0;
|
||||
static int udptlfecspan = 0;
|
||||
static int udptlmaxdatagram = 0;
|
||||
static int udptlfectype;
|
||||
static int udptlfecentries;
|
||||
static int udptlfecspan;
|
||||
static int udptlmaxdatagram;
|
||||
|
||||
#define LOCAL_FAX_MAX_DATAGRAM 400
|
||||
#define MAX_FEC_ENTRIES 5
|
||||
@@ -137,7 +137,7 @@ struct ast_udptl {
|
||||
udptl_fec_rx_buffer_t rx[UDPTL_BUF_MASK + 1];
|
||||
};
|
||||
|
||||
static struct ast_udptl_protocol *protos = NULL;
|
||||
static struct ast_udptl_protocol *protos;
|
||||
|
||||
static int udptl_rx_packet(struct ast_udptl *s, uint8_t *buf, int len);
|
||||
static int udptl_build_packet(struct ast_udptl *s, uint8_t *buf, uint8_t *ifp, int ifp_len);
|
||||
|
||||
Reference in New Issue
Block a user