Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:links broken? (Score 1) 56

As if any browser was capable of using more than one core to render a page. With Chromium or Electrolysis you can have different tabs use more than one core, but there's never any parallelism within a tab. All because of brain-dead design of Javascript.

Comment Re:"IPv6 Leakage"??? Give me a break. (Score 2) 65

For example in the Linux iptables packet filter, you can disable the IPv6 protocol completely with a single command:
iptables -I INPUT -p 41 -j DROP

No, that will drop just one of many ways of tunnelling IPv6 over IPv4. To drop or manipulate IPv6 packets, you need to use ip6tables instead.

And you really shouldn't be using DROP here, as it will delay every connection until timeout expires. You want REJECT instead.

Slashdot Top Deals

Anyone can make an omelet with eggs. The trick is to make one with none.

Working...