Skip to content

Commit

Permalink
Disable fragmenter because it is broken on some systems.
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb James DeLisle committed Nov 24, 2012
1 parent 87187ec commit fe3e48a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions admin/angel/Core.c
Expand Up @@ -162,9 +162,11 @@ void Core_initTunnel(String* desiredDeviceName,


struct TUNInterface* tun = TUNInterface_new(tunPtr, eventBase, alloc); struct TUNInterface* tun = TUNInterface_new(tunPtr, eventBase, alloc);


struct ICMP6Generator* icmp = ICMP6Generator_new(alloc); // broken
InterfaceConnector_connect(&icmp->external, &tun->iface); //struct ICMP6Generator* icmp = ICMP6Generator_new(alloc);
Ducttape_setUserInterface(dt, &icmp->internal); //InterfaceConnector_connect(&icmp->external, &tun->iface);
//Ducttape_setUserInterface(dt, &icmp->internal);
Ducttape_setUserInterface(dt, &tun->iface);


TUNConfigurator_setIpAddress(assignedTunName, ipAddr, addressPrefix, logger, eh); TUNConfigurator_setIpAddress(assignedTunName, ipAddr, addressPrefix, logger, eh);
TUNConfigurator_setMTU(assignedTunName, DEFAULT_MTU, logger, eh); TUNConfigurator_setMTU(assignedTunName, DEFAULT_MTU, logger, eh);
Expand Down

0 comments on commit fe3e48a

Please sign in to comment.