[server,proxy] avoid _ in struct names

This commit is contained in:
Armin Novak
2025-03-19 16:34:26 +01:00
committed by akallabeth
parent b14f9e8965
commit 73dfd5e143
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@
#define TAG PROXY_TAG("channel")
/** @brief a tracker for channel packets */
struct _ChannelStateTracker
struct sChannelStateTracker
{
pServerStaticChannelContext* channel;
ChannelTrackerMode mode;

View File

@@ -29,7 +29,7 @@ typedef enum
CHANNEL_TRACKER_DROP /*!< drop all the fragments of the current packet */
} ChannelTrackerMode;
typedef struct _ChannelStateTracker ChannelStateTracker;
typedef struct sChannelStateTracker ChannelStateTracker;
typedef PfChannelResult (*ChannelTrackerPeekFn)(ChannelStateTracker* tracker, BOOL first,
BOOL lastPacket);