Skip to content

Commit

Permalink
make channel attr public
Browse files Browse the repository at this point in the history
  • Loading branch information
argha-c committed May 7, 2024
1 parent 75fa277 commit 50c2fc9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ public final class HAProxyMessageChannelHandler extends ChannelInboundHandlerAda
AttributeKey.newInstance("_haproxy_message");
public static final AttributeKey<HAProxyProtocolVersion> ATTR_HAPROXY_VERSION =
AttributeKey.newInstance("_haproxy_version");
static final AttributeKey<List<HAProxyTLV>> ATTR_HAPROXY_CUSTOM_TLVS = AttributeKey.newInstance("_haproxy_tlvs");
public static final AttributeKey<List<HAProxyTLV>> ATTR_HAPROXY_CUSTOM_TLVS = AttributeKey.newInstance(
"_haproxy_tlvs");

@VisibleForTesting
static final Attrs.Key<Integer> HAPM_DEST_PORT = Attrs.newKey("hapm_port");
Expand Down

0 comments on commit 50c2fc9

Please sign in to comment.