Changeset 9117


Ignore:
Timestamp:
02/25/08 21:05:17 (5 years ago)
Author:
BrainSlayer
Message:

block multicast per default to avoid confusion with igmp proxy load

Location:
src/router/services
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/router/services/sysinit/defaults.c

    r9038 r9117  
    215215  {"wan_proto", "disabled", 0}, /* [static|dhcp|pppoe|disabled] */ 
    216216#endif 
     217#elif HAVE_DIR400 
     218  {"wan_proto", "dhcp", 0},     /* [static|dhcp|pppoe|disabled] */ 
    217219#elif HAVE_DIR300 
    218220  {"wan_proto", "dhcp", 0},     /* [static|dhcp|pppoe|disabled] */ 
     
    958960  {"block_activex", "0", 0},    /* Block ActiveX [1|0] */ 
    959961  {"block_cookie", "0", 0},     /* Block Cookie [1|0] */ 
    960   {"block_multicast", "0", 0},  /* Multicast Pass Through [1|0] */ 
     962  {"block_multicast", "1", 0},  /* Multicast Pass Through [1|0] */ 
    961963  {"block_loopback", "0", 0},   /* Block NAT loopback [1|0] */ 
    962964  {"ipsec_pass", "1", 0},       /* IPSec Pass Through [1|0] */ 
     
    972974  {"block_activex", "0", 0},    /* Block ActiveX [1|0] */ 
    973975  {"block_cookie", "0", 0},     /* Block Cookie [1|0] */ 
    974   {"block_multicast", "0", 0},  /* Multicast Pass Through [1|0] */ 
     976  {"block_multicast", "1", 0},  /* Multicast Pass Through [1|0] */ 
    975977  {"block_loopback", "0", 0},   /* Block NAT loopback [1|0] */ 
    976978  {"ipsec_pass", "1", 0},       /* IPSec Pass Through [1|0] */ 
     
    986988  {"block_activex", "0", 0},    /* Block ActiveX [1|0] */ 
    987989  {"block_cookie", "0", 0},     /* Block Cookie [1|0] */ 
    988   {"block_multicast", "0", 0},  /* Multicast Pass Through [1|0] */ 
     990  {"block_multicast", "1", 0},  /* Multicast Pass Through [1|0] */ 
    989991  {"block_loopback", "0", 0},   /* Block NAT loopback [1|0] */ 
    990992  {"ipsec_pass", "1", 0},       /* IPSec Pass Through [1|0] */ 
     
    9991001  {"block_activex", "0", 0},    /* Block ActiveX [1|0] */ 
    10001002  {"block_cookie", "0", 0},     /* Block Cookie [1|0] */ 
    1001   {"block_multicast", "0", 0},  /* Multicast Pass Through [1|0] */ 
     1003  {"block_multicast", "1", 0},  /* Multicast Pass Through [1|0] */ 
    10021004  {"block_loopback", "0", 0},   /* Block NAT loopback [1|0] */ 
    10031005  {"ipsec_pass", "1", 0},       /* IPSec Pass Through [1|0] */ 
  • src/router/services/tools/site_survey_broadcom.c

    r7683 r9117  
    5050  uint16 beacon_period;         /* units are Kusec */ 
    5151  uint16 capability;            /* Capability information */ 
     52//  unsigned char athcaps; 
    5253  unsigned char ENCINFO[32];    /* encryption info */ 
    5354  uint rate_count;              /* # rates in this set */ 
  • src/router/services/tools/site_survey_madwifi.c

    r8735 r9117  
    105105  unsigned short beacon_period; /* units are Kusec */ 
    106106  unsigned short capability;    /* Capability information */ 
     107//  unsigned char athcaps; 
    107108  unsigned char ENCINFO[32];    /* encryption info */ 
    108109  int rate_count;               /* # rates in this set */ 
     
    165166        (int) site_survey_lists[i].phy_noise + (int) sr->isr_rssi; 
    166167      site_survey_lists[i].capability = sr->isr_capinfo; 
     168//      site_survey_lists[i].athcaps = sr->isr_athflags; 
    167169      site_survey_lists[i].rate_count = sr->isr_nrates; 
    168170      cp += sr->isr_len, len -= sr->isr_len; 
Note: See TracChangeset for help on using the changeset viewer.