Commit 2ee3b65a authored by mullers's avatar mullers
Browse files

ARP in default added and 6to4 configuration completed

parent 92b63ae3
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -161,7 +161,6 @@
		
	}//end group calcPrefixFns

	
	/*
	 * @desc 	This goes through the ExtensionHeaderList and
	 *			checks if a HomeAddressOption is present.
+2 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
	 * @param 	p_ArpRequest ARP packet value or template with ARP request to be sent
	 * @return 	execution status
	*/
	function f_sendArpRequest (in ArpEthRequest p_ArpRequest) 
	function f_sendArpRequest (in template ArpEthRequest p_ArpRequest) 
	runs on LibIpv6Node
	return FncRetCode {
		var ArpEthRequest v_ipPkt;
@@ -44,7 +44,7 @@
	 * @param 	p_ArpRequest ARP packet value or template with ARP request to be sent
	 * @return 	execution status
	*/
	function f_sendArpReply (in ArpEthReply p_ArpReply) 
	function f_sendArpReply (in template ArpEthReply p_ArpReply) 
	runs on LibIpv6Node
	return FncRetCode {
		var ArpEthReply v_ipPkt;
+2 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@
		const UInt16 	c_opRequest := 1;
		const UInt16 	c_opReply := 2;
		const UInt16 	c_hrdEthernet := 1;
		const UInt16	c_arpHwTypeEth := 1;
		const UInt16	c_arpProtocolTypeIp := 8;
	}

 	group ArpPackets {
+1 −1

File changed.

Contains only whitespace changes.