Browse Source

Modify curl setopt wrapper

master
Kenneth Bruen 9 months ago
parent
commit
dc12c6b6e0
Signed by: kbruen
GPG Key ID: C1980A470C3EE5B1
  1. 4
      src/curl.zig
  2. 6
      src/departure.zig
  3. 6
      src/home.zig

4
src/curl.zig

@ -67,9 +67,9 @@ pub fn setopt_raw(
pub fn setopt(
self: *@This(),
option: Option,
args: anytype,
arg: anytype,
) c_api.CURLcode {
return self.setopt_raw(@intFromEnum(option), args);
return self.setopt_raw(@intFromEnum(option), .{ arg });
}
pub const Utils = struct {

6
src/departure.zig

@ -59,12 +59,12 @@ fn fetchThread(state: *AppState) !void {
const url = try std.fmt.allocPrintZ(allocator, "{}", .{departures_uri});
defer allocator.free(url);
_ = curl.setopt(.url, .{url.ptr});
_ = curl.setopt(.url, url.ptr);
var result = std.ArrayList(u8).init(allocator);
defer result.deinit();
_ = curl.setopt(.write_function, .{Curl.Utils.array_list_append});
_ = curl.setopt(.write_data, .{&result});
_ = curl.setopt(.write_function, Curl.Utils.array_list_append);
_ = curl.setopt(.write_data, &result);
const code = curl.perform();
std.debug.print("[departure/fetchThread] cURL Code: {}\n", .{code});

6
src/home.zig

@ -38,12 +38,12 @@ fn fetchThread(state: *AppState) !void {
const url = try std.fmt.allocPrintZ(allocator, "{}", .{locations_uri});
defer allocator.free(url);
_ = curl.setopt(.url, .{url.ptr});
_ = curl.setopt(.url, url.ptr);
var result = std.ArrayList(u8).init(allocator);
defer result.deinit();
_ = curl.setopt(.write_function, .{Curl.Utils.array_list_append});
_ = curl.setopt(.write_data, .{&result});
_ = curl.setopt(.write_function, Curl.Utils.array_list_append);
_ = curl.setopt(.write_data, &result);
const code = curl.perform();
std.debug.print("[home/fetchThread] cURL Code: {}\n", .{code});

Loading…
Cancel
Save