~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to slirp/if.c

  • Committer: blueswir1
  • Date: 2007-10-26 19:01:16 UTC
  • Revision ID: git-v1:9634d9031c140b24c7ca0d8872632207f6ce7275
 Use const and static as needed, disable unused code


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3452 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
#include <slirp.h>
9
9
 
10
 
int if_mtu, if_mru;
11
 
int if_comp;
12
 
int if_maxlinkhdr;
13
10
int     if_queued = 0;                  /* Number of packets queued so far */
14
11
int     if_thresh = 10;                 /* Number of packets queued before we start sending
15
12
                                         * (to prevent allocing too many mbufs) */
41
38
void
42
39
if_init()
43
40
{
44
 
#if 0
45
 
        /*
46
 
         * Set if_maxlinkhdr to 48 because it's 40 bytes for TCP/IP,
47
 
         * and 8 bytes for PPP, but need to have it on an 8byte boundary
48
 
         */
49
 
#ifdef USE_PPP
50
 
        if_maxlinkhdr = 48;
51
 
#else
52
 
        if_maxlinkhdr = 40;
53
 
#endif
54
 
#else
55
 
        /* 2 for alignment, 14 for ethernet, 40 for TCP/IP */
56
 
        if_maxlinkhdr = 2 + 14 + 40;
57
 
#endif
58
 
        if_mtu = 1500;
59
 
        if_mru = 1500;
60
 
        if_comp = IF_AUTOCOMP;
61
41
        if_fastq.ifq_next = if_fastq.ifq_prev = &if_fastq;
62
42
        if_batchq.ifq_next = if_batchq.ifq_prev = &if_batchq;
63
43
        //      sl_compress_init(&comp_s);