Sponsored Content
Full Discussion: Unix Manuals
Top Forums UNIX for Dummies Questions & Answers Unix Manuals Post 28983 by g1zm0 on Friday 27th of September 2002 12:59:07 AM
Old 09-27-2002
Unix Manuals

Hey, I have a red hat linux server, and am lost in the wilderness. any type of 300000 page boxo someone wrote to help? ia m in need of deperate care
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

IRIX books, manuals, references...

Does anyone out there know of ANY specific books pertaining to SGI's flavor of Unix - IRIX? I have been in contact with SGI directly and they have not supplied me with any usable reference material or manuals. I realize man pages are a good source for info, but I need to go a little deeper... (6 Replies)
Discussion started by: lozinit
6 Replies

2. UNIX for Dummies Questions & Answers

Unix newbie: manuals

Hi to everybody! I'm new italian unix user and, of course, i 've got problems during my "administrative" part. Does anyone know where to get some manuals (.pdf, .doc ...) for the unix commands? Thank in advance! (1 Reply)
Discussion started by: Mauro
1 Replies

3. UNIX for Dummies Questions & Answers

Cobalt Raq3 -- Manuals Needed

Hi I decided to buy a cobalt Raq3 but have no clue on how to set one up. I thought it would be straight forward but its not as simple as it looks. Can anyone provide me with locations of manuals or noobie setup instructions. Any help would be greatly appreciated Thanks:) (2 Replies)
Discussion started by: Demon Lama
2 Replies

4. UNIX for Dummies Questions & Answers

DGUX manuals

Hi Anyone know where i get DGUX manuals.... Cheers (1 Reply)
Discussion started by: Flipper_Al
1 Replies

5. HP-UX

HP9000 I70 E35 E55 manuals

I am looking for the service manuals of these servers. Can anyone would like to share please? I know the documentation is in the form of hard copy only. But if someome can share through scan or want to sell, let me know. thanks in advance (4 Replies)
Discussion started by: samurai123
4 Replies

6. HP-UX

Manuals

Apologies if this is in the wrong section but I am desperate! Can anyone help me get hold of manuals for the n4000 series server? I need to get the hardware assembled correctly so I can install hp-ux11. Any help would be much appreciated. We bought a decomissioned server but have zero... (7 Replies)
Discussion started by: Swathe
7 Replies

7. SCO

SCO Training manuals

Hi, I have stack of SCO Open server and general SCO training books, materials and guides. Is there anyone out there that might be interested in this stuff? Perhaps it recycle time? :) (6 Replies)
Discussion started by: scocrush
6 Replies
CURLOPT_CONNECTTIMEOUT_MS(3)				     curl_easy_setopt options				      CURLOPT_CONNECTTIMEOUT_MS(3)

NAME
CURLOPT_CONNECTTIMEOUT_MS - timeout for the connect phase SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CONNECTTIMEOUT_MS, long timeout); DESCRIPTION
Pass a long. It should contain the maximum time in milliseconds that you allow the connection phase to the server to take. This only lim- its the connection phase, it has no impact once it has connected. Set to zero to switch to the default built-in connection timeout - 300 seconds. See also the CURLOPT_TIMEOUT_MS(3) option. In unix-like systems, this might cause signals to be used unless CURLOPT_NOSIGNAL(3) is set. DEFAULT
300000 PROTOCOLS
All EXAMPLE
CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "http://example.com"); /* complete connection within 10000 milliseconds */ curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT_MS, 10000L); curl_easy_perform(curl); } AVAILABILITY
Always RETURN VALUE
Returns CURLE_OK SEE ALSO
CURLOPT_TIMEOUT(3), CURLOPT_LOW_SPEED_LIMIT(3), libcurl 7.54.0 February 14, 2016 CURLOPT_CONNECTTIMEOUT_MS(3)
All times are GMT -4. The time now is 07:54 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy