Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
94a38864
Commit
94a38864
authored
23 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
minor fixes for compiler warnings
parent
616d8eda
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/urldata.h
+7
-7
7 additions, 7 deletions
lib/urldata.h
with
7 additions
and
7 deletions
lib/urldata.h
+
7
−
7
View file @
94a38864
...
...
@@ -142,8 +142,8 @@ struct ssl_config_data {
struct
HTTP
{
struct
FormData
*
sendit
;
int
postsize
;
char
*
p_pragma
;
/* Pragma: string */
char
*
p_accept
;
/* Accept: string */
const
char
*
p_pragma
;
/* Pragma: string */
const
char
*
p_accept
;
/* Accept: string */
long
readbytecount
;
long
writebytecount
;
...
...
@@ -476,9 +476,9 @@ struct UrlData {
allocated */
char
*
useragent
;
/* User-Agent string */
char
*
postfields
;
/* if POST, set the fields' values here */
long
postfieldsize
;
/* if POST, this might have a size to use instead of
strlen(), and then the data *may* be binary (contain
zero bytes) */
size_t
postfieldsize
;
/* if POST, this might have a size to use instead of
strlen(), and then the data *may* be binary (contain
zero bytes) */
/* stuff related to FTP */
char
*
ftpport
;
/* port to send with the PORT command */
...
...
@@ -565,7 +565,7 @@ struct UrlData {
/* 'connects' will be an allocated array with pointers. If the pointer is
set, it holds an allocated connection. */
struct
connectdata
**
connects
;
size_t
numconnects
;
/* size of the 'connects' array */
long
numconnects
;
/* size of the 'connects' array */
curl_closepolicy
closepolicy
;
};
...
...
@@ -584,7 +584,7 @@ CURLcode Curl_getinfo(CURL *curl, CURLINFO info, ...);
* and they're not meant for "public use" anymore.
*/
CURLcode
Curl_open
(
CURL
**
curl
,
char
*
url
);
CURLcode
Curl_open
(
CURL
**
curl
);
CURLcode
Curl_setopt
(
CURL
*
handle
,
CURLoption
option
,
...);
CURLcode
Curl_close
(
CURL
*
curl
);
/* the opposite of curl_open() */
CURLcode
Curl_connect
(
struct
UrlData
*
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment