*/
public IPv4NetworkLayer() throws NetworkException {
sender = new IPv4Sender(this);
registerProtocol(new ICMPProtocol(this));
registerProtocol(new TCPProtocol(this));
registerProtocol(new UDPProtocol(this));
registerProtocol(new RAWProtocol(this));
}