Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix IPv6Address.of(byte[]) to correctly deal with the 8th and 16th byte when the first bit is one LOXI-67 #399

Merged
merged 1 commit into from
May 15, 2015

Conversation

ronaldchl
Copy link
Contributor

Reviewer: @rlane @Sovietaced

@rlane
Copy link
Contributor

rlane commented May 15, 2015

LGTM

@bsn-abat
Copy link

Refer to this link for build results (access rights to CI server needed):
https://jenkins.bigswitch.com//job/loxigen_pull_req/147/
Test PASSed.

@Sovietaced
Copy link
Contributor

ACK

@bsn-abat
Copy link

ABAT: START_MERGE: Log file at http://vss1/abat/2015.05.15.2329-m.loxigen.master/abat.log

@@ -174,13 +174,13 @@ public static IPv6Address of(@Nonnull final byte[] address) {
(address[0] & 0xFFL) << 56 | (address[1] & 0xFFL) << 48
| (address[2] & 0xFFL) << 40 | (address[3] & 0xFFL) << 32
| (address[4] & 0xFFL) << 24 | (address[5] & 0xFFL) << 16
| (address[6] & 0xFFL) << 8 | (address[7]);
| (address[6] & 0xFFL) << 8 | (address[7] & 0xFFL);

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops.

bsn-abat pushed a commit to floodlight/loxigen-artifacts that referenced this pull request May 15, 2015
Loxigen Head commit floodlight/loxigen@bd96054
commit bd960540d2200dc256872e6143a22929b42463bc
Merge: bc53ec0 b90552c
Author: abat <abat@bigswitch.com>
Date:   Fri May 15 16:29:43 2015 -0700

    Merge into master from pull request #399:
    Fix IPv6Address.of(byte[]) to correctly deal with the 8th and 16th byte when the first bit is one LOXI-67 (floodlight/loxigen#399)

commit b90552cca26e6da8b5c655f1de969794682b137e
Author: Ronald Li <ronald.li@bigswitch.com>
Date:   Fri May 15 16:03:32 2015 -0700

    Fix IPv6Address.of(byte[]) to correctly deal with the 8th and 16th byte when the first bit is one LOXI-67
@bsn-abat
Copy link

ABAT: ACCEPT: Successfully merged

In case you want to see the build log, check out :
Log file at http://vss1/abat/2015.05.15.2329-m.loxigen.master/abat.log
/cc

@bsn-abat bsn-abat merged commit b90552c into floodlight:master May 15, 2015
bsn-abat pushed a commit that referenced this pull request May 15, 2015
Fix IPv6Address.of(byte[]) to correctly deal with the 8th and 16th byte when the first bit is one LOXI-67 (#399)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants