This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/deps/ftplib-4.0-1/html/FtpLastResponse.html
2018-05-27 09:39:05 +10:00

32 lines
931 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>FtpLastResponse</title>
<link rel="stylesheet" type="text/css" href="doc.css">
</head>
<body>
<h1>FtpLastResponse</h1>
<p>Retrieve the last response sent by the server.</p>
<h2>SYNOPSIS</h2>
<pre>
#include &lt;ftplib.h&gt;
char *FtpLastResponse(netbuf *nControl);
</pre>
<h2>PARAMETERS</h2>
<dl>
<dt><b>nControl</b></dt>
<dd>A pointer to a control handle returned by
<a href="FtpConnect.html">FtpConnect()</a>.</dd>
</dl>
<h2>DESCRIPTION</h2>
<p>FtpLastResponse() returns a pointer to the last response string
sent by the server. This can be parsed by the user program to
determine more information about the last request or can be
displayed along with an error message.</p>
<h2>RETURN VALUE</h2>
<p>If nControl is a valid control handle, FtpLastResponse() returns
a pointer to the last server response string. Otherwise, NULL is
returned.</p>
</body>
</html>