Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/protocol/http/multicurlinterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

//Global variables
#define IFINTERFACE "erouter0"
#define DEFAULT_POOL_SIZE 2
#define DEFAULT_POOL_SIZE 1
#define MAX_ALLOWED_POOL_SIZE 5 // Maximum allowed pool size
#define MIN_ALLOWED_POOL_SIZE 1 // Minimum allowed pool size
#define HTTP_RESPONSE_FILE "/tmp/httpOutput.txt"
Expand Down Expand Up @@ -1088,3 +1088,4 @@ size_t writeToFile(void *ptr, size_t size, size_t nmemb, void *stream)
size_t written = fwrite(ptr, size, nmemb, (FILE *) stream);
return written;
}

Loading