aboutsummaryrefslogtreecommitdiff
path: root/docs/INTERNALS
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-09-20 14:05:53 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-09-20 14:05:53 +0000
commit322308e298f5e86ab5261f4289b1636b1130efd1 (patch)
treea82a02c4d7ea1d681f720359db6b06f8878d9c45 /docs/INTERNALS
parentb53e326828e83bb1fb291d597dc9817554a53470 (diff)
the winsock stuff is made by curl_global_init
Diffstat (limited to 'docs/INTERNALS')
-rw-r--r--docs/INTERNALS5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/INTERNALS b/docs/INTERNALS
index 42ac4508b..f9532797b 100644
--- a/docs/INTERNALS
+++ b/docs/INTERNALS
@@ -1,4 +1,3 @@
- Updated for curl 7.9.1 on November 2, 2001
_ _ ____ _
___| | | | _ \| |
/ __| | | | |_) | |
@@ -37,8 +36,8 @@ Windows vs Unix
2. Windows requires a couple of init calls for the socket stuff.
- Those must be made by the application that uses libcurl, in curl that means
- src/main.c has some code #ifdef'ed to do just that.
+ That's taken care of by the curl_global_init() call, but if other libs also
+ do it etc there might be reasons for applications to alter that behaviour.
3. The file descriptors for network communication and file operations are
not easily interchangable as in unix.