JavaScript | Prototypes

http://www.peterkropff.de/site/javascript/prototypen.htm http://www.w3schools.com/js/js_object_prototypes.asp http://www.documentroot.net/allgemein/js-tutorial-klassen-prototypen-oop or the short way: # function A() { this.x = 5; } # function B() { this.y = 6; } # B.prototype = new A(); # var b = new B(); # alert(b.x); // => 5 (huge thanx to Manuel Bleichner)

ISAKMPD | stopping, flushing, reloading

Stopping: If isamkmpd is running in the foreground, ctrl+c does not flush existing connections (SAD’s). Do a little ipsecctl -F kill -9 kills only the daemon, the connections stay alive. Use kill -TERM instead. Or use the isakmpd FIFO user interface: echo ‘Q’ > /var/run/isakmpd.fifo Reloading: kill -HUP or echo ‘R’ > /var/run/isakmpd.fifo