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
3d38080d
Commit
3d38080d
authored
20 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
*seven* new options to support 3rd party FTP transfers
parent
fe07962f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/curl/curl.h
+29
-1
29 additions, 1 deletion
include/curl/curl.h
with
29 additions
and
1 deletion
include/curl/curl.h
+
29
−
1
View file @
3d38080d
...
...
@@ -518,7 +518,7 @@ typedef enum {
CINIT
(
FOLLOWLOCATION
,
LONG
,
52
),
/* use Location: Luke! */
CINIT
(
TRANSFERTEXT
,
LONG
,
53
),
/* transfer data in text/ASCII format */
CINIT
(
PUT
,
LONG
,
54
),
/*
PUT the input file
*/
CINIT
(
PUT
,
LONG
,
54
),
/*
HTTP PUT
*/
/* 55 = OBSOLETE */
...
...
@@ -780,6 +780,34 @@ typedef enum {
/* Enable/disable the TCP Nagle algorithm */
CINIT
(
TCP_NODELAY
,
LONG
,
121
),
/* When doing 3rd party transfer, set the source host name with this */
CINIT
(
SOURCE_HOST
,
OBJECTPOINT
,
122
),
/* When doing 3rd party transfer, set the source user and password with
this */
CINIT
(
SOURCE_USERPWD
,
OBJECTPOINT
,
123
),
/* When doing 3rd party transfer, set the source file path with this */
CINIT
(
SOURCE_PATH
,
OBJECTPOINT
,
124
),
/* When doing 3rd party transfer, set the source server's port number
with this */
CINIT
(
SOURCE_PORT
,
LONG
,
125
),
/* When doing 3rd party transfer, decide which server that should get the
PASV command (and the other gets the PORT).
0 (default) - The target host issues PASV.
1 - The source host issues PASV */
CINIT
(
PASV_HOST
,
LONG
,
126
),
/* When doing 3rd party transfer, set the source pre-quote linked list
of commands with this */
CINIT
(
SOURCE_PREQUOTE
,
OBJECTPOINT
,
127
),
/* When doing 3rd party transfer, set the source post-quote linked list
of commands with this */
CINIT
(
SOURCE_POSTQUOTE
,
OBJECTPOINT
,
128
),
CURLOPT_LASTENTRY
/* the last unused */
}
CURLoption
;
...
...
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