diff --git a/build.zig b/build.zig index 5dd0ac1..e240ea0 100644 --- a/build.zig +++ b/build.zig @@ -16,7 +16,7 @@ pub fn build(b: *std.Build) void { const optimize = b.standardOptimizeOption(.{}); const exe = b.addExecutable(.{ - .name = "faas-proxy", + .name = "flexilib", // In this case the main source file is merely a path, however, in more // complicated build scripts, this could be a generated file. .root_source_file = .{ .path = "src/main.zig" }, @@ -27,7 +27,7 @@ pub fn build(b: *std.Build) void { exe.linkLibC(); const lib = b.addSharedLibrary(.{ - .name = "faas-proxy-sample-lib", + .name = "flexilib-sample-lib", // In this case the main source file is merely a path, however, in more // complicated build scripts, this could be a generated file. .root_source_file = .{ .path = "src/main-lib.zig" }, @@ -37,7 +37,7 @@ pub fn build(b: *std.Build) void { lib.linkLibC(); const interface_lib = b.addStaticLibrary(.{ - .name = "libfaasproxy", + .name = "flexilib", // In this case the main source file is merely a path, however, in more // complicated build scripts, this could be a generated file. .root_source_file = .{ .path = "src/interface.zig" }, diff --git a/proxy.ini b/proxy.ini index f835555..f4f9228 100644 --- a/proxy.ini +++ b/proxy.ini @@ -6,6 +6,6 @@ # Example of match based on an HTTP header. The key is space-delimited: # :
-Host: iam / = zig-out/lib/libfaas-proxy-sample-lib.so -/c = zig-out/lib/libfaas-proxy-sample-lib-in-c.so -/ = zig-out/lib/libfaas-proxy-sample-lib.so +Host: iam / = zig-out/lib/libflexilib-sample-lib.so +/c = zig-out/lib/libflexilib-in-c.so +/ = zig-out/lib/libflexilib-sample-lib.so