diff options
| author | luwenpeng <[email protected]> | 2024-09-18 18:32:20 +0800 |
|---|---|---|
| committer | luwenpeng <[email protected]> | 2024-09-20 16:59:19 +0800 |
| commit | 620019cf8e1c2be20a478ff8572bb0a9c22ddf3c (patch) | |
| tree | 8b5da36f7e89e722fb97d3812cbeb12e4ff591cc /infra/ip_reassembly | |
| parent | 60caf1bda19f8797b72ef93a9c18517c4ca9495c (diff) | |
refactor(session manager): rename original session_manager to session_manager_runtime
Diffstat (limited to 'infra/ip_reassembly')
| -rw-r--r-- | infra/ip_reassembly/ip_reassembly.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/ip_reassembly/ip_reassembly.h b/infra/ip_reassembly/ip_reassembly.h index 269b320..a9b95ee 100644 --- a/infra/ip_reassembly/ip_reassembly.h +++ b/infra/ip_reassembly/ip_reassembly.h @@ -16,7 +16,7 @@ struct ip_reassembly_config uint64_t ip_frag_expire_polling_limit; // range: [1, 1024] }; -struct __attribute__((aligned(64))) ip_reassembly_stat +struct ip_reassembly_stat { // IPv4 frag stat uint64_t ip4_defrags_expected; @@ -47,7 +47,7 @@ struct __attribute__((aligned(64))) ip_reassembly_stat uint64_t ip6_frags_bypass_no_buffer; uint64_t ip6_frags_bypass_dup_fist_frag; uint64_t ip6_frags_bypass_dup_last_frag; -}; +} __attribute__((aligned(64))); struct ip_reassembly_config *ip_reassembly_config_new(const char *toml_file); void ip_reassembly_config_free(struct ip_reassembly_config *cfg); |
