Express overwrite attribute as a byte in communication protocol
[lttng-tools.git] / include / lttng / save-internal.h
index f4a56f8667f878805db888cb1ca47be81aef47d1..aac213e03fefc94da9e69c5bae53de72411557e8 100644 (file)
@@ -21,6 +21,7 @@
 #include <limits.h>
 #include <stdint.h>
 
+#include <lttng/constant.h>
 #include <common/macros.h>
 
 /*
  */
 struct lttng_save_session_attr {
        /* Name of the session to save, empty string means all. */
-       char session_name[NAME_MAX];
+       char session_name[LTTNG_NAME_MAX];
        /* Destination of the session configuration. See lttng(1) for URL format. */
        char configuration_url[PATH_MAX];
        /* Overwrite the session configuration file if it exists. */
-       uint32_t overwrite;
+       uint8_t overwrite;
 } LTTNG_PACKED;
 
 #endif /* LTTNG_SAVE_INTERNAL_ABI_H */
This page took 0.024112 seconds and 4 git commands to generate.