forked from pramsey/pgsql-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Purpose: Main file. | ||
* | ||
*********************************************************************** | ||
* Copyright 2014 Paul Ramsey <[email protected]> | ||
* Copyright 2015 Paul Ramsey <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a | ||
* copy of this software and associated documentation files (the | ||
|
@@ -214,6 +214,9 @@ string_info_remove_cr(StringInfo si) | |
return; | ||
} | ||
|
||
/** | ||
* Add an array of http_header tuples into a Curl string list. | ||
*/ | ||
static struct curl_slist * | ||
header_array_to_slist(ArrayType *array, struct curl_slist *headers) | ||
{ | ||
|