aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl-the-guide
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-03-19 09:08:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-03-19 09:08:57 +0000
commite65993bccbecaf42ce6dd61a187bc7414fc08a0f (patch)
tree64c65fca150dfeff53a382e85cabfc68e00b665a /docs/libcurl-the-guide
parent7ffb4660ec68e03f28b812269cff7446486b1d08 (diff)
language
Diffstat (limited to 'docs/libcurl-the-guide')
-rw-r--r--docs/libcurl-the-guide6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/libcurl-the-guide b/docs/libcurl-the-guide
index 7ab8c31a9..27eb954d5 100644
--- a/docs/libcurl-the-guide
+++ b/docs/libcurl-the-guide
@@ -9,7 +9,7 @@ PROGRAMMING WITH LIBCURL
About this Document
- This document will attempt to describe the general principle and some basic
+ This document attempts to describe the general principles and some basic
approaches to consider when programming with libcurl. The text will focus
mainly on the C interface but might apply fairly well on other interfaces as
well as they usually follow the C one pretty closely.
@@ -878,7 +878,7 @@ FTP Peculiarities We Need
libcurl can either connect to the server a second time or tell the server to
connect back to it. The first option is the default and it is also what works
- best for all the people behind firewals, NATs or ip-masquarading setups.
+ best for all the people behind firewalls, NATs or IP-masquarading setups.
libcurl then tells the server to open up a new port and wait for a second
connection. This is by default attempted with EPSV first, and if that doesn't
work it tries PASV instead. (EPSV is an extension to the original FTP spec
@@ -887,7 +887,7 @@ FTP Peculiarities We Need
You can prevent libcurl from first trying the EPSV command by setting
CURLOPT_FTP_USE_EPSV to FALSE.
- In some cases, you will perfer to have the server connect back to you for the
+ In some cases, you will prefer to have the server connect back to you for the
second connection. This might be when the server is perhaps behind a firewall
or something and only allows connections on a single port. libcurl then
informs the remote server which IP address and port number to connect to.