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
01ed950b
Commit
01ed950b
authored
23 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
added CURLOPT_FTP_USE_EPSV
parent
b1076e0a
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
+9
-9
9 additions, 9 deletions
include/curl/curl.h
with
9 additions
and
9 deletions
include/curl/curl.h
+
9
−
9
View file @
01ed950b
...
...
@@ -212,10 +212,8 @@ typedef enum {
in the CURLOPT_FLAGS to activate this */
CINIT
(
RANGE
,
OBJECTPOINT
,
7
),
#if 0
/* Configuration flags */
CINIT(FLAGS, LONG, 8),
#endif
/* not used */
/* Specified file stream to upload from (use as input): */
CINIT
(
INFILE
,
OBJECTPOINT
,
9
),
...
...
@@ -321,11 +319,8 @@ typedef enum {
/* HTTP request, for odd commands like DELETE, TRACE and others */
CINIT
(
STDERR
,
OBJECTPOINT
,
37
),
#if 0
/* Progress mode set alternative progress mode displays. Alternative
ones should now be made by the client, not the lib! */
CINIT(PROGRESSMODE, LONG, 38),
#endif
/* 38 is not used */
/* send linked-list of post-transfer QUOTE commands */
CINIT
(
POSTQUOTE
,
OBJECTPOINT
,
39
),
...
...
@@ -465,6 +460,11 @@ typedef enum {
/* Specify which HTTP version to use! This must be set to one of the
CURL_HTTP_VERSION* enums set below. */
CINIT
(
HTTP_VERSION
,
LONG
,
84
),
/* Specificly switch on or off the FTP engine's use of the EPSV command. By
default, that one will always be attempted before the more traditional
PASV command. */
CINIT
(
FTP_USE_EPSV
,
LONG
,
85
),
CURLOPT_LASTENTRY
/* the last unusued */
}
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