Skip to content

Commit

Permalink
[Java] Change RSP_SETUP message type to allow for ATS messages. Add A…
Browse files Browse the repository at this point in the history
…TS constants to Java definitions for completeness.
  • Loading branch information
mikeb01 committed Dec 11, 2023
1 parent b70de8f commit 507c2ee
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions aeron-client/src/main/java/io/aeron/protocol/HeaderFlyweight.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,24 @@ public class HeaderFlyweight extends UnsafeBuffer
public static final int HDR_TYPE_RES = 0x07;

/**
* header type RESPONSE_SETUP
* header type ATS Data
*/
public static final int HDR_TYPE_RSP_SETUP = 0x08;
public static final int HDR_TYPE_ATS_DATA = 0x08;

/**
* header type ATS Status Message
*/
public static final int HDR_TYPE_ATS_SM = 0x09;

/**
* header type ATS Setup
*/
public static final int HDR_TYPE_ATS_SETUP = 0x0A;

/**
* header type Response Setup
*/
public static final int HDR_TYPE_RSP_SETUP = 0x0B;

/**
* header type EXT
Expand Down

0 comments on commit 507c2ee

Please sign in to comment.