Compare commits
2 commits
c3c019f19f
...
8cffb0d809
Author | SHA1 | Date | |
---|---|---|---|
8cffb0d809 | |||
30ed877c56 |
2 changed files with 4 additions and 2 deletions
|
@ -243,7 +243,9 @@ const Multipart = struct {
|
|||
// read body until we find the boundary end marker (--{s} OR --{s}--)
|
||||
var it = std.mem.split(remaining_body, self.boundary);
|
||||
const almost_actual_body = it.next() orelse return error.MissingPartBody;
|
||||
const body = std.mem.trimRight(u8, almost_actual_body, "\r\n");
|
||||
|
||||
var body_it = std.mem.split(almost_actual_body, "\r\n");
|
||||
const body = body_it.next().?;
|
||||
|
||||
const next_boundary_pos = self.stream.pos + body.len;
|
||||
const next_boundary_body = self.stream.buffer[next_boundary_pos..self.stream.buffer.len];
|
||||
|
|
2
zig.mod
2
zig.mod
|
@ -3,7 +3,7 @@ name: yet-another-pomf-clone
|
|||
main: src/main.zig
|
||||
dev_dependencies:
|
||||
|
||||
- src: git https://github.com/Luukdegram/apple_pie
|
||||
- src: git https://github.com/lun-4/apple_pie
|
||||
name: apple_pie
|
||||
main: src/apple_pie.zig
|
||||
|
||||
|
|
Loading…
Reference in a new issue