Sponsored Content
The Lounge What is on Your Mind? Congratulations RudiC for completing 4500 THANKS in forums. Post 303033724 by RudiC on Wednesday 10th of April 2019 05:28:07 PM
Old 04-10-2019
Thank you, guys, for your compliments!
These 4 Users Gave Thanks to RudiC For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Enterprise 4500 Question

I am trying to hookup a Sun Enterprise 4500 system to a console port on a Network Terminal Server. I can't seem to figure out the pin-out for this connector. This connection will be DB-25 (on the 4500) to RJ-45 (on the NTS). My next question is: Does the port on the Enterprise 4500 have to be... (4 Replies)
Discussion started by: pc9456
4 Replies

2. Solaris

Trouble installing solaris 9 on 4500

I have a enterprise 4500 sun box. I installed 2 new 72 gb drives to replace the 2 x 9 gb drives that were in it. I have the solaris 9 install disk in it and when i do a boot cdrom it starts then says: panic - boot: ufsboot: cannot determine filesystem type of root device. Any suggestions. (1 Reply)
Discussion started by: frankkahle
1 Replies

3. Solaris

Enterprise 4500 DVD-ROM

Hello, We have a Sun Enterprise 4500. I checked the product manual from SUN's site and it says it has a DVD-ROM. I downloaded Solaris 10 DVD image and burned it to a DVD and put it into the box but I don't see anyting in the /cdrom folder. Is there a command I can use to confirm if I have... (5 Replies)
Discussion started by: zafyil
5 Replies

4. What is on Your Mind?

Congratulations to Chile ! Bravo !!

On behalf of the forums, we are so happy to see such an amazingly rescue of the 33 miners. What a great and happy story of human endurance and team work to save miners trapped nearly 700 meters underground. Bravo Chile !! We salute you!!! (5 Replies)
Discussion started by: Neo
5 Replies

5. What is on Your Mind?

Congratulations Neo for 10,000 Post

Hi all, Please join me to congrats Neo for crossing 10,000 posts count. I think he is the first to have this count with the longest journey (12 yrs) at unix.com. At least I didn't see any other member with the same or more figures.Mods, please correct me if wrong. Perderabo is likely to be the... (6 Replies)
Discussion started by: clx
6 Replies

6. What is on Your Mind?

Congratulations to Corona688 for 20,000 Posts!

Please join me in congratulating and thanking Corona688 for 20,000 top quality posts at unix.com ! https://www.unix.com/members/1-albums112-picture651.png (11 Replies)
Discussion started by: Neo
11 Replies

7. What is on Your Mind?

Congratulations Scrutinizer for completing 3000 THANKS in the forum.

Hello Scrutinizer, Many Many Many heartily congratulations :b: to you sir(my/our HERO) to complete 3000 THANKS into the forum :b:. This shows how good you are in forums/answering people/helping/guiding people here. You are a true CHAMP, inspiration for LOT of people here. I THANK you for your... (13 Replies)
Discussion started by: RavinderSingh13
13 Replies

8. What is on Your Mind?

Congrats to RudiC - 3000 Thanks!

Congratulations to RudiC for crossing the magic boundary of being thanked 3000 times! As someone who often has profited greatly from your insight i stand in awe before this achievement. Thank you for your ongoing dedication and thank you for your willingness to share your knowledge! bakunin ... (15 Replies)
Discussion started by: bakunin
15 Replies

9. What is on Your Mind?

Congratulations RudiC for completing 4000+ THANKS in forums.

Hello All forum members, I would like to take this opportunity to THANK RudiC for his tremendous achievement, guidance, help for helping in forums, let us join our hands together for his GREAT achievement :b: @Rudi sir, How are you sir? you ROCK, please keep up the great work sir :b: ... (1 Reply)
Discussion started by: RavinderSingh13
1 Replies
CURLOPT_PROXY_SSL_VERIFYPEER(3) 			     curl_easy_setopt options				   CURLOPT_PROXY_SSL_VERIFYPEER(3)

NAME
CURLOPT_PROXY_SSL_VERIFYPEER - verify the proxy's SSL certificate SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY_SSL_VERIFYPEER, long verify); DESCRIPTION
Pass a long as parameter set to 1L to enable or 0L to disable. This option tells curl to verifies the authenticity of the HTTPS proxy's certificate. A value of 1 means curl verifies; 0 (zero) means it doesn't. This is the proxy version of CURLOPT_SSL_VERIFYPEER(3) that's used for ordinary HTTPS servers. When negotiating a TLS or SSL connection, the server sends a certificate indicating its identity. Curl verifies whether the certificate is authentic, i.e. that you can trust that the server is who the certificate says it is. This trust is based on a chain of digital signa- tures, rooted in certification authority (CA) certificates you supply. curl uses a default bundle of CA certificates (the path for that is determined at build time) and you can specify alternate certificates with the CURLOPT_PROXY_CAINFO(3) option or the CURLOPT_PROXY_CAPATH(3) option. When CURLOPT_PROXY_SSL_VERIFYPEER(3) is enabled, and the verification fails to prove that the certificate is authentic, the connection fails. When the option is zero, the peer certificate verification succeeds regardless. Authenticating the certificate is not enough to be sure about the server. You typically also want to ensure that the server is the server you mean to be talking to. Use CURLOPT_PROXY_SSL_VERIFYHOST(3) for that. The check that the host name in the certificate is valid for the host name you're connecting to is done independently of the CURLOPT_PROXY_SSL_VERIFYPEER(3) option. WARNING: disabling verification of the certificate allows bad guys to man-in-the-middle the communication without you knowing it. Disabling verification makes the communication insecure. Just having encryption on a transfer is not enough as you cannot be sure that you are commu- nicating with the correct end-point. DEFAULT
1 PROTOCOLS
All EXAMPLE
CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "https://example.com"); /* Set the default value: strict certificate check please */ curl_easy_setopt(curl, CURLOPT_PROXY_SSL_VERIFYPEER, 1L); curl_easy_perform(curl); } AVAILABILITY
Added in 7.52.0 If built TLS enabled. RETURN VALUE
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not. SEE ALSO
CURLOPT_PROXY_SSL_VERIFYHOST(3), CURLOPT_SSL_VERIFYPEER(3), CURLOPT_SSL_VERIFYHOST(3), libcurl 7.54.0 December 16, 2016 CURLOPT_PROXY_SSL_VERIFYPEER(3)
All times are GMT -4. The time now is 02:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy