- Mar 24, 2016
-
-
Tulio Ribeiro authored
The key.jceks needs to be created like this: Value of CHALLENGE_RESPONSE_SECRET=AliasChallengeResponse Value of CHALLENGE_RESPONSE_SECRET at CryptoUtil.java is hard coded.
-
Tulio Ribeiro authored
-
- Mar 16, 2016
-
-
Tulio Ribeiro authored
-
Tulio Ribeiro authored
-
- Mar 15, 2016
-
-
Tulio Ribeiro authored
-
- Mar 04, 2016
-
-
Tulio Ribeiro authored
Role of switch from floodlightdefault.properties
-
Tulio Ribeiro authored
Treatment of ROLE_STATUS message OF1.4
-
- Feb 25, 2016
-
-
Ryan Izard authored
deserialize fix for not-known Ethernet types
-
- Feb 24, 2016
-
-
André Mantas authored
For Ethernet types not in Ethernet.etherTypeClassMap, the deserialization would set the payload to the whole data array (including the mac addresses and eth type) instead of the rest of the data array. For example, this would fail to print: Ethernet l2 = new Ethernet(); l2.setEtherType(EthType.of(65535)); // some type l2.setSourceMACAddress(MacAddress.of("00:00:00:00:00:01")); l2.setDestinationMACAddress(MacAddress.BROADCAST); Data packetData = new Data(); packetData.setData("some string".getBytes()); l2.setPayload(packetData); byte[] l2bytes = l2.serialize(); Ethernet l2d = new Ethernet(); l2d.deserialize(l2bytes, 0, l2bytes.length); Data packetDataDeserialized = (Data) l2d.getPayload(); // printing "new String(packetDataDeserialized.getData())" gives "?????" I ran the JUnit tests in floodlightcontroller.core.internal, floodlightcontroller.core.test and floodlightcontroller.packet. Are there any more relevant tests?
-
- Feb 23, 2016
-
-
Ryan Izard authored
LLDP Fix
-
- Feb 22, 2016
-
-
Petr Nebáznivý authored
LLDP Fix
-
Petr Nebáznivý authored
Fix LLDP inport.
-
- Feb 19, 2016
-
-
Ryan Izard authored
Passed script arguments to floodlight
-
- Feb 18, 2016
-
-
Ricardo Fonseca authored
This is so you can use floodlight arguments, such as "-cf <config_file>", when executing the script.
-
- Feb 12, 2016
-
-
Ryan Izard authored
Fixing squid:S2259 - Null pointers should not be dereferenced
-
- Feb 09, 2016
-
-
smisger authored
-
- Feb 08, 2016
-
-
Ryan Izard authored
Fix non-ASCII characters that are problematic when building with ant in Ubuntu
-
Ryan Izard authored
-
- Feb 07, 2016
-
-
Ryan Izard authored
Update readme for v1.2
-
Ryan Izard authored
-
- Feb 05, 2016
-
-
Ryan Izard authored
Add nanoseconds to flow-stats REST API output
-
Ryan Izard authored
-
Ryan Izard authored
Update ACL.java
-
Ryan Izard authored
Included NetIDE header under EPL
-
- Feb 04, 2016
-
-
paaguti-work authored
-
- Feb 02, 2016
-
-
Ryan Izard authored
Add a callback after an input event has been consumed
-
Puneet Singh authored
In the event the device manger does not yet know an attachment point for a device, the ACL should detect that and perform a noop. Simply checking the length of the SwitchPort[] returned from the device manger should fix the problem. If the length is zero, return; else, proceed.
-
- Jan 25, 2016
-
-
paaguti-work authored
Include the completion listener in the MockFloodlightProvider
-
- Jan 22, 2016
-
-
paaguti-work authored
Fixed typo and deprecatedAPI call in the new onMessageConsumed
-
paaguti-work authored
-
- Jan 21, 2016
-
-
Ryan Izard authored
Initial commit to add in Travis-CI automated testing
-
Ryan Izard authored
-
paaguti-work authored
-
paaguti-work authored
# Conflicts: # src/main/java/net/floodlightcontroller/core/internal/Controller.java
-
paaguti-work authored
-
paaguti-work authored
-
- Jan 11, 2016
-
-
Ryan Izard authored
OF1.4 bug fixes
-
- Jan 10, 2016
-
-
Ryan Izard authored
Modified Forwarding and ForwardingBase to use setInstructions instead…
-
AndreMantas authored
Modified Forwarding and ForwardingBase to use setInstructions instead of setActions in OF 1.1 or later. New openflowj-2.0.0-SNAPSHOT.jar that duplicates the shortcut used for FlowMod setActions in version 1.3 to versions 1.1, 1.2 and 1.4
-
- Jan 04, 2016
-
-
Ryan Izard authored
Fix OF1.4 table features properties byte-align to 8 bytes. This required a Loxi update. Also updated handshake handler to not use action but instead instructions w/apply-actions.
-