~as-s/helenos/ipv6

« back to all changes in this revision

Viewing changes to uspace/lib/nic/src/nic_rx_control.c

  • Committer: Anthony Steinhauser
  • Date: 2013-07-08 01:07:36 UTC
  • Revision ID: as@strmilov.cz-20130708010736-pbvrszhamp0v64ez
HelenOS networking stack supports IPv6

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
        /* Default NIC behavior */
77
77
        rxc->unicast_exact = true;
78
 
        rxc->multicast_exact = false;
 
78
        //TODO - temporarily enabled promisc just for NDP solicitation testing
 
79
        rxc->multicast_exact = true;
 
80
        //rxc->multicast_exact = false;
79
81
        rxc->vlan_exact = true;
80
82
        return EOK;
81
83
}