Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Nov 18, 2010
1 parent 4b8c62b commit 1c33763
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/jgroups/Address.java
Expand Up @@ -14,9 +14,9 @@
*/
public interface Address extends Externalizable, Streamable, Comparable<Address>, Cloneable { // todo: remove Externalizable
// flags used for marshalling
public static final byte NULL = 1;
public static final byte UUID_ADDR = 2;
public static final byte IP_ADDR = 4;
public static final byte NULL = 1 << 0;
public static final byte UUID_ADDR = 1 << 1;
public static final byte IP_ADDR = 1 << 2;

/**
* Checks whether this is an address that represents multiple destinations;
Expand Down

0 comments on commit 1c33763

Please sign in to comment.