arpadboda commented on a change in pull request #613: Minificpp 927 Nanofi
tailfile delimited processor
URL: https://github.com/apache/nifi-minifi-cpp/pull/613#discussion_r304288389
##########
File path: nanofi/include/core/cstructs.h
##########
@@ -155,9 +155,33 @@ typedef struct cstream {
* ##################################################################
*/
-typedef struct tokens {
- char ** str_list;
- uint64_t num_strings;
+typedef struct token_node {
+ char * data;
+ struct token_node * next;
+} token_node;
+
+typedef struct token_list {
Review comment:
If I remember well I had a comment before to try to avoid implementing
data-structures while UT provides the ones we need.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services