Skip to content

Commit

Permalink
added zstd compression support
Browse files Browse the repository at this point in the history
  • Loading branch information
moaazassali committed Jul 7, 2024
1 parent 55aedba commit c1c9c3d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/structs/client_options_wrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ struct chc_client_options {
return CompressionMethod::None;
case 1:
return CompressionMethod::LZ4;
case 2:
return CompressionMethod::ZSTD;
default:
return CompressionMethod::None;
}
Expand Down

0 comments on commit c1c9c3d

Please sign in to comment.