1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-22 18:29:36 +01:00

refactor(libstore): extract S3 URL parsing into separate files

Move ParsedS3URL from s3.cc/.hh into dedicated s3-url.cc/.hh files.
This separates URL parsing utilities (which are protocol-agnostic) from
the AWS SDK-specific S3Helper implementation, making the code cleaner
and enabling reuse by future curl-based S3 implementation.
This commit is contained in:
Bernardo Meurer Costa 2025-10-01 16:01:28 +00:00
parent 251479bdda
commit b72898b2aa
No known key found for this signature in database
7 changed files with 76 additions and 59 deletions

View file

@ -329,7 +329,7 @@ sources = files(
'remote-store.cc',
'restricted-store.cc',
's3-binary-cache-store.cc',
's3.cc',
's3-url.cc',
'serve-protocol-connection.cc',
'serve-protocol.cc',
'sqlite.cc',