Skip to content

Commit

Permalink
[XrdCl] Handle kXR_attrCache attribute in protocol response
Browse files Browse the repository at this point in the history
  • Loading branch information
amadio committed Nov 1, 2024
1 parent 9f18c52 commit c838699
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/XrdCl/XrdClXRootDResponses.hh
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ namespace XrdCl
{
IsManager = kXR_isManager, //!< Manager
IsServer = kXR_isServer, //!< Data server
AttrCache = kXR_attrCache, //!< Cache attribute
AttrMeta = kXR_attrMeta, //!< Meta attribute
AttrProxy = kXR_attrProxy, //!< Proxy attribute
AttrSuper = kXR_attrSuper //!< Supervisor attribute
Expand Down
3 changes: 3 additions & 0 deletions src/XrdCl/XrdClXRootDTransport.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2857,6 +2857,9 @@ namespace XrdCl
if( flags & kXR_attrMeta )
repr += "meta ";

else if( flags & kXR_attrCache )
repr += "cache ";

else if( flags & kXR_attrProxy )
repr += "proxy ";

Expand Down

0 comments on commit c838699

Please sign in to comment.