diff options
| author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2024-03-15 12:55:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-15 12:55:02 +0100 |
| commit | 93eef5015e0dfe8d24071dd036f9a7f02160abeb (patch) | |
| tree | e29da398ce6b83a71f25f574de6d0ff58f488012 /docs/ftp.html | |
| parent | 23241717bf91c4317065828bedafd05ebb97c1ef (diff) | |
| download | luasocket-93eef5015e0dfe8d24071dd036f9a7f02160abeb.tar.gz luasocket-93eef5015e0dfe8d24071dd036f9a7f02160abeb.tar.bz2 luasocket-93eef5015e0dfe8d24071dd036f9a7f02160abeb.zip | |
chore(docs): update LTN12 links (#428)
Diffstat (limited to 'docs/ftp.html')
| -rw-r--r-- | docs/ftp.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/ftp.html b/docs/ftp.html index 7f7da2e..2c57fc8 100644 --- a/docs/ftp.html +++ b/docs/ftp.html | |||
| @@ -55,7 +55,7 @@ protocol. For that, check the implementation. | |||
| 55 | 55 | ||
| 56 | <p> | 56 | <p> |
| 57 | To really benefit from this module, a good understanding of | 57 | To really benefit from this module, a good understanding of |
| 58 | <a href="http://lua-users.org/wiki/FiltersSourcesAndSinks"> | 58 | <a href="https://github.com/lunarmodules/luasocket/blob/master/ltn012.md"> |
| 59 | LTN012, Filters sources and sinks</a> is necessary. | 59 | LTN012, Filters sources and sinks</a> is necessary. |
| 60 | </p> | 60 | </p> |
| 61 | 61 | ||
| @@ -122,7 +122,7 @@ expects at least the fields <tt>host</tt>, <tt>sink</tt>, and one of | |||
| 122 | <tt>argument</tt> or <tt>path</tt> (<tt>argument</tt> takes | 122 | <tt>argument</tt> or <tt>path</tt> (<tt>argument</tt> takes |
| 123 | precedence). <tt>Host</tt> is the server to connect to. <tt>Sink</tt> is | 123 | precedence). <tt>Host</tt> is the server to connect to. <tt>Sink</tt> is |
| 124 | the <em>simple</em> | 124 | the <em>simple</em> |
| 125 | <a href="http://lua-users.org/wiki/FiltersSourcesAndSinks">LTN12</a> | 125 | <a href="https://github.com/lunarmodules/luasocket/blob/master/ltn012.md">LTN12</a> |
| 126 | sink that will receive the downloaded data. <tt>Argument</tt> or | 126 | sink that will receive the downloaded data. <tt>Argument</tt> or |
| 127 | <tt>path</tt> give the target path to the resource in the server. The | 127 | <tt>path</tt> give the target path to the resource in the server. The |
| 128 | optional arguments are the following: | 128 | optional arguments are the following: |
| @@ -136,7 +136,7 @@ authentication. Defaults to "<tt>ftp:anonymous@anonymous.org</tt>";</li> | |||
| 136 | <li><tt>type</tt>: The transfer mode. Can take values "<tt>i</tt>" or | 136 | <li><tt>type</tt>: The transfer mode. Can take values "<tt>i</tt>" or |
| 137 | "<tt>a</tt>". Defaults to whatever is the server default;</li> | 137 | "<tt>a</tt>". Defaults to whatever is the server default;</li> |
| 138 | <li><tt>step</tt>: | 138 | <li><tt>step</tt>: |
| 139 | <a href="http://lua-users.org/wiki/FiltersSourcesAndSinks">LTN12</a> | 139 | <a href="https://github.com/lunarmodules/luasocket/blob/master/ltn012.md">LTN12</a> |
| 140 | pump step function used to pass data from the | 140 | pump step function used to pass data from the |
| 141 | server to the sink. Defaults to the LTN12 <tt>pump.step</tt> function;</li> | 141 | server to the sink. Defaults to the LTN12 <tt>pump.step</tt> function;</li> |
| 142 | <li><tt>create</tt>: An optional function to be used instead of | 142 | <li><tt>create</tt>: An optional function to be used instead of |
| @@ -206,7 +206,7 @@ expects at least the fields <tt>host</tt>, <tt>source</tt>, and one of | |||
| 206 | <tt>argument</tt> or <tt>path</tt> (<tt>argument</tt> takes | 206 | <tt>argument</tt> or <tt>path</tt> (<tt>argument</tt> takes |
| 207 | precedence). <tt>Host</tt> is the server to connect to. <tt>Source</tt> is | 207 | precedence). <tt>Host</tt> is the server to connect to. <tt>Source</tt> is |
| 208 | the <em>simple</em> | 208 | the <em>simple</em> |
| 209 | <a href="http://lua-users.org/wiki/FiltersSourcesAndSinks">LTN12</a> | 209 | <a href="https://github.com/lunarmodules/luasocket/blob/master/ltn012.md">LTN12</a> |
| 210 | source that will provide the contents to be uploaded. | 210 | source that will provide the contents to be uploaded. |
| 211 | <tt>Argument</tt> or | 211 | <tt>Argument</tt> or |
| 212 | <tt>path</tt> give the target path to the resource in the server. The | 212 | <tt>path</tt> give the target path to the resource in the server. The |
| @@ -221,7 +221,7 @@ authentication. Defaults to "<tt>ftp:anonymous@anonymous.org</tt>";</li> | |||
| 221 | <li><tt>type</tt>: The transfer mode. Can take values "<tt>i</tt>" or | 221 | <li><tt>type</tt>: The transfer mode. Can take values "<tt>i</tt>" or |
| 222 | "<tt>a</tt>". Defaults to whatever is the server default;</li> | 222 | "<tt>a</tt>". Defaults to whatever is the server default;</li> |
| 223 | <li><tt>step</tt>: | 223 | <li><tt>step</tt>: |
| 224 | <a href="http://lua-users.org/wiki/FiltersSourcesAndSinks">LTN12</a> | 224 | <a href="https://github.com/lunarmodules/luasocket/blob/master/ltn012.md">LTN12</a> |
| 225 | pump step function used to pass data from the | 225 | pump step function used to pass data from the |
| 226 | server to the sink. Defaults to the LTN12 <tt>pump.step</tt> function;</li> | 226 | server to the sink. Defaults to the LTN12 <tt>pump.step</tt> function;</li> |
| 227 | <li><tt>create</tt>: An optional function to be used instead of | 227 | <li><tt>create</tt>: An optional function to be used instead of |
