aboutsummaryrefslogtreecommitdiffstats
path: root/src/libserver/task.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rspamd.com>2024-03-18 14:56:16 +0000
committerVsevolod Stakhov <vsevolod@rspamd.com>2024-03-18 14:56:16 +0000
commit6b2b4167187fee09365271cca182866ecb029af3 (patch)
treea085717bc896b25ff4280eb86abecca0d5c36767 /src/libserver/task.h
parent47bcfc8360dfa1754474580e779314b8d6a78da6 (diff)
downloadrspamd-6b2b4167187fee09365271cca182866ecb029af3.tar.gz
rspamd-6b2b4167187fee09365271cca182866ecb029af3.zip
[Rework] Remove some of the GLib types in lieu of standard ones
This types have constant conflicts with the system ones especially on OSX.
Diffstat (limited to 'src/libserver/task.h')
-rw-r--r--src/libserver/task.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libserver/task.h b/src/libserver/task.h
index 5404a1128..8d4fa1b23 100644
--- a/src/libserver/task.h
+++ b/src/libserver/task.h
@@ -171,10 +171,10 @@ struct rspamd_task {
struct rspamd_worker *worker; /**< pointer to worker object */
enum rspamd_command cmd; /**< command */
gint sock; /**< socket descriptor */
- guint32 dns_requests; /**< number of DNS requests per this task */
- guint32 flags; /**< Bit flags */
- guint32 protocol_flags;
- guint32 processed_stages; /**< bits of stages that are processed */
+ uint32_t dns_requests; /**< number of DNS requests per this task */
+ uint32_t flags; /**< Bit flags */
+ uint32_t protocol_flags;
+ uint32_t processed_stages; /**< bits of stages that are processed */
gchar *helo; /**< helo header value */
gchar *queue_id; /**< queue id if specified */
rspamd_inet_addr_t *from_addr; /**< from addr for a task */