[ https://issues.apache.org/jira/browse/GEODE-10300?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17536518#comment-17536518 ]
ASF GitHub Bot commented on GEODE-10300: ---------------------------------------- gaussianrecurrence commented on code in PR #970: URL: https://github.com/apache/geode-native/pull/970#discussion_r872129402 ########## cppcache/include/geode/DataInput.hpp: ########## @@ -452,19 +452,19 @@ class APACHE_GEODE_EXPORT DataInput { DataInput& operator=(DataInput&&) = default; protected: + const uint8_t* m_buf; + const uint8_t* m_bufHead; Review Comment: Naming notation for member attributes in Geode Native follows lowerCamelCase with _ as a postfix, to indicate that it's a member variable. As example 'm_buf' would rather be 'buf_'. Usually whenever we make a change that touches part of the code with the old notation (m_...) the idea is to change it to the right notation > C++ Native client messages coming from the locator cannot be longer than 3000 > bytes > ----------------------------------------------------------------------------------- > > Key: GEODE-10300 > URL: https://issues.apache.org/jira/browse/GEODE-10300 > Project: Geode > Issue Type: Bug > Components: native client > Reporter: Alberto Gomez > Assignee: Alberto Gomez > Priority: Major > Labels: needsTriage, pull-request-available > > If a locator sends a response to the C++ native client that is longer than > 3000 bytes the C++ native client library will only read the first 3000 bytes. -- This message was sent by Atlassian Jira (v8.20.7#820007)