Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libxml2
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
OpenVMS
libraries
libxml2
Commits
5de16a5919e2
Commit
5de16a5919e2
authored
3 years ago
by
Nick Wellnhofer
Browse files
Options
Downloads
Patches
Plain Diff
Deprecate all functions in nanoftp.h
parent
dbead36103c3
Branches
Branches containing commit
Tags
0.4d
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/libxml/nanoftp.h
+24
-1
24 additions, 1 deletion
include/libxml/nanoftp.h
with
24 additions
and
1 deletion
include/libxml/nanoftp.h
+
24
−
1
View file @
5de16a59
/*
* Summary: minimal FTP implementation
* Description: minimal FTP implementation allowing to fetch resources
* like external subset.
* like external subset. This module is DEPRECATED, do not
* use any of its functions.
*
* Copy: See Copyright for the status of this software.
*
...
...
@@ -78,5 +79,6 @@
/*
* Init
*/
XML_DEPRECATED
XMLPUBFUN
void
XMLCALL
xmlNanoFTPInit
(
void
);
...
...
@@ -81,8 +83,9 @@
XMLPUBFUN
void
XMLCALL
xmlNanoFTPInit
(
void
);
XML_DEPRECATED
XMLPUBFUN
void
XMLCALL
xmlNanoFTPCleanup
(
void
);
/*
* Creating/freeing contexts.
*/
...
...
@@ -83,8 +86,9 @@
XMLPUBFUN
void
XMLCALL
xmlNanoFTPCleanup
(
void
);
/*
* Creating/freeing contexts.
*/
XML_DEPRECATED
XMLPUBFUN
void
*
XMLCALL
xmlNanoFTPNewCtxt
(
const
char
*
URL
);
...
...
@@ -89,4 +93,5 @@
XMLPUBFUN
void
*
XMLCALL
xmlNanoFTPNewCtxt
(
const
char
*
URL
);
XML_DEPRECATED
XMLPUBFUN
void
XMLCALL
xmlNanoFTPFreeCtxt
(
void
*
ctx
);
...
...
@@ -91,8 +96,9 @@
XMLPUBFUN
void
XMLCALL
xmlNanoFTPFreeCtxt
(
void
*
ctx
);
XML_DEPRECATED
XMLPUBFUN
void
*
XMLCALL
xmlNanoFTPConnectTo
(
const
char
*
server
,
int
port
);
/*
* Opening/closing session connections.
*/
...
...
@@ -93,8 +99,9 @@
XMLPUBFUN
void
*
XMLCALL
xmlNanoFTPConnectTo
(
const
char
*
server
,
int
port
);
/*
* Opening/closing session connections.
*/
XML_DEPRECATED
XMLPUBFUN
void
*
XMLCALL
xmlNanoFTPOpen
(
const
char
*
URL
);
...
...
@@ -99,4 +106,5 @@
XMLPUBFUN
void
*
XMLCALL
xmlNanoFTPOpen
(
const
char
*
URL
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPConnect
(
void
*
ctx
);
...
...
@@ -101,4 +109,5 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPConnect
(
void
*
ctx
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPClose
(
void
*
ctx
);
...
...
@@ -103,4 +112,5 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPClose
(
void
*
ctx
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPQuit
(
void
*
ctx
);
...
...
@@ -105,4 +115,5 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPQuit
(
void
*
ctx
);
XML_DEPRECATED
XMLPUBFUN
void
XMLCALL
xmlNanoFTPScanProxy
(
const
char
*
URL
);
...
...
@@ -107,8 +118,9 @@
XMLPUBFUN
void
XMLCALL
xmlNanoFTPScanProxy
(
const
char
*
URL
);
XML_DEPRECATED
XMLPUBFUN
void
XMLCALL
xmlNanoFTPProxy
(
const
char
*
host
,
int
port
,
const
char
*
user
,
const
char
*
passwd
,
int
type
);
...
...
@@ -109,9 +121,10 @@
XMLPUBFUN
void
XMLCALL
xmlNanoFTPProxy
(
const
char
*
host
,
int
port
,
const
char
*
user
,
const
char
*
passwd
,
int
type
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPUpdateURL
(
void
*
ctx
,
const
char
*
URL
);
...
...
@@ -119,5 +132,6 @@
/*
* Rather internal commands.
*/
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPGetResponse
(
void
*
ctx
);
...
...
@@ -122,8 +136,9 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPGetResponse
(
void
*
ctx
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPCheckResponse
(
void
*
ctx
);
/*
* CD/DIR/GET handlers.
*/
...
...
@@ -124,9 +139,10 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPCheckResponse
(
void
*
ctx
);
/*
* CD/DIR/GET handlers.
*/
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPCwd
(
void
*
ctx
,
const
char
*
directory
);
...
...
@@ -130,7 +146,8 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPCwd
(
void
*
ctx
,
const
char
*
directory
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPDele
(
void
*
ctx
,
const
char
*
file
);
...
...
@@ -133,6 +150,7 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPDele
(
void
*
ctx
,
const
char
*
file
);
XML_DEPRECATED
XMLPUBFUN
SOCKET
XMLCALL
xmlNanoFTPGetConnection
(
void
*
ctx
);
...
...
@@ -137,4 +155,5 @@
XMLPUBFUN
SOCKET
XMLCALL
xmlNanoFTPGetConnection
(
void
*
ctx
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPCloseConnection
(
void
*
ctx
);
...
...
@@ -139,7 +158,8 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPCloseConnection
(
void
*
ctx
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPList
(
void
*
ctx
,
ftpListCallback
callback
,
void
*
userData
,
const
char
*
filename
);
...
...
@@ -141,8 +161,9 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPList
(
void
*
ctx
,
ftpListCallback
callback
,
void
*
userData
,
const
char
*
filename
);
XML_DEPRECATED
XMLPUBFUN
SOCKET
XMLCALL
xmlNanoFTPGetSocket
(
void
*
ctx
,
const
char
*
filename
);
...
...
@@ -146,8 +167,9 @@
XMLPUBFUN
SOCKET
XMLCALL
xmlNanoFTPGetSocket
(
void
*
ctx
,
const
char
*
filename
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPGet
(
void
*
ctx
,
ftpDataCallback
callback
,
void
*
userData
,
const
char
*
filename
);
...
...
@@ -149,8 +171,9 @@
XMLPUBFUN
int
XMLCALL
xmlNanoFTPGet
(
void
*
ctx
,
ftpDataCallback
callback
,
void
*
userData
,
const
char
*
filename
);
XML_DEPRECATED
XMLPUBFUN
int
XMLCALL
xmlNanoFTPRead
(
void
*
ctx
,
void
*
dest
,
...
...
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