Sponsored Content
Operating Systems SCO How install curl in openserver 5.0.7? Post 302942339 by fersys on Monday 27th of April 2015 07:24:48 PM
Old 04-27-2015
How install curl in openserver 5.0.7?

Hello, I wanted to know how to install the service "CURL" for UNIX OpenServer 5.0.7
I need to connect a web service even government to generate an electronic invoice.
Sorry for my English, the forum is excellent but my English is not.
I hope the comments
thank you very muchSmilieSmilieSmilieSmilieSmilieSmilie
 

10 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

SCO openserver 5 install problem

Hello all, I'm trying to install SCO openserver 5 on a 2.5 Gig hard drive, and I tried fdisk and a low-level format of the drive. When I insert the boot diskette all seems fine, and it asks me to set the cd-rom and it sees it and reads from it. Well, I'm thinking all is well until right after I... (1 Reply)
Discussion started by: immulett
1 Replies

2. UNIX for Dummies Questions & Answers

How to install and configure Apache on SCO openserver 5

I have just been made responsible for setting up Apache on our office SCO box. I have searched the internet, but haven't found any details that I can make sense of. I'm unfamiliar with Unix and would appreciate any help members of the forum have to offer. (1 Reply)
Discussion started by: cstovall
1 Replies

3. SCO

How to install openserver 6 on X3650

hardware:IBM X3650 7979-I01 This machine has no floppy disk. How to load the HBA driver when install openserver 6? (5 Replies)
Discussion started by: sdccf
5 Replies

4. SCO

Openserver 6.0 Install Issue

I am having issues with installing Openserver 6.0 on newer servers, such as most of the newer Dell Poweredge servers (ie R210, T310, etc..), where the USB keyboard will not function through the install process. I can put an already-installed drive in the system from a compatible system, and the... (2 Replies)
Discussion started by: MrN2itiv
2 Replies

5. SCO

Install SCO Openserver 5.0.7 as a trial

hi Howto install SCO Openserver 5.0.7 as a trial or howto get a trial license number? (0 Replies)
Discussion started by: ccc
0 Replies

6. SCO

Install NIC on SCO openserver 5.0.2

Hi I am trying to install NIC FastNic 10/100 PCI Ethernet driver into PCI# 3 of the GA-SIML Rev 1.0 Motherboard on 1GB Hard-disk driveI have following the instruction on the CD-Disk and when I added NIC by netconfig and I do not know what is the following question: PCI BUS# DEVICE#... (3 Replies)
Discussion started by: TinhNhi
3 Replies

7. SCO

Help to install foxpro 2.5 on openserver 6.0.0.

Can anyone help me to install foxpro 2.5 for unix openserver 6.0.0. I recently updtae my server from 5.0.7 to 6.0.0. to get an usb tape working, but can't install or run foxpro 2.5, all the programs run on it, need help. thanks or if anyone had a version tested of foxpro on openserver 6.0.0.... (3 Replies)
Discussion started by: jactroo
3 Replies

8. SCO

Need help to install sco openserver 5

Hi, Im installing sco openserver 5 (OpenServer-5.0.7Hw-10Jun05_1800.iso) on a vmware server 1.0.4. Installation is ok but on when x server is loading i just can login, mouse does not move and most of keyboard cases do not respond. I choose usb mouse + french keyboard while installating, should i... (1 Reply)
Discussion started by: sup69
1 Replies

9. SCO

install iperf on SCO OpenServer 5.0.7

hi Howto install iperf on SCO OpenServer 5.0.7? (0 Replies)
Discussion started by: ccc
0 Replies

10. SCO

Install Hang OpenServer 6 - SATA CDROM

Hi all Can anybody offer any help with installing Openserver 6 on a Supermicro server? I am familiar with installing OS5, but this is my first time with v6. The PC is fitted with Supermicro X8DTL-I Dual Xeon motherboard and 2 Xeon E5620 processors, and 16Gb Ram, LSI MegaRaid SAS8708 8 port... (11 Replies)
Discussion started by: millosman
11 Replies
CURLOPT_CONNECTTIMEOUT(3)				     curl_easy_setopt options					 CURLOPT_CONNECTTIMEOUT(3)

NAME
CURLOPT_CONNECTTIMEOUT - timeout for the connect phase SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CONNECTTIMEOUT, long timeout); DESCRIPTION
Pass a long. It should contain the maximum time in seconds that you allow the connection phase to the server to take. This only limits 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(3) option. In unix-like systems, this might cause signals to be used unless CURLOPT_NOSIGNAL(3) is set. DEFAULT
300 PROTOCOLS
All EXAMPLE
CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "http://example.com"); /* complete connection within 10 seconds */ curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 10L); 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 03, 2016 CURLOPT_CONNECTTIMEOUT(3)
All times are GMT -4. The time now is 08:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy