summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2023-10-02 07:14:50 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2023-10-02 07:14:50 (GMT)
commit1b991b5c66cc44b6f93a14c1c265683074224004 (patch)
tree0f05b9daad87d85c9318fe28ef0d2f8a787b0b37 /src/common
parente662be152d0b2fe0d1626a845121db5f1a51d9aa (diff)
Implement Base64 encoding for scan pattern modifications.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/szstr.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/szstr.h b/src/common/szstr.h
index aad1920..406a9f1 100644
--- a/src/common/szstr.h
+++ b/src/common/szstr.h
@@ -38,8 +38,13 @@
typedef struct _sized_string_t
{
union {
+
const char *static_data; /* Données non modifiées */
char *data; /* Chaîne de caractères */
+
+ const bin_t *static_bin_data; /* Données brutes non modifiées*/
+ bin_t *bin_data; /* Données brutes */
+
};
size_t len; /* Taille correspondante */