Sponsored Content
Top Forums Programming Failed SSL Connection Attempt Post 302918588 by vbe on Wednesday 24th of September 2014 10:09:33 AM
Old 09-24-2014
Well, thanks for keeping us informed !
Smilie
 

10 More Discussions You Might Find Interesting

1. Solaris

ssh connection failed.

When i was connecting the Solaris system by sftp . i got the following error. "Warning: child process (/usr/local/bin/ssh2) exited with code 74." Could any one help, how to fix it ? (1 Reply)
Discussion started by: nag.mi2000
1 Replies

2. Solaris

Solaris10 on vmware - Internet connection failed

Installed Sun Solaris 10 (5/09) on vmware 6.0 but system is not connecting to internet. when I check "ipconfig /all" I do not get any DNS Suffix name -- neither for vmnet1 and vmnet8 nor for local ethernet IP. Default gateways are 192.168.1.1 and 192.168.1.2 1. Created /etc/resolv.conf domain... (1 Reply)
Discussion started by: johnjerry
1 Replies

3. Solaris

Please help me.. connection failed between OpenSSH-3.8.1 to Sun SSH-1.1

hi All, We tried to establish a connection from OpenSSH3.8.1 running on Windows Box to SunSSH-1.1 running on Solaris 10. Please see the debug statements. C:\Documents and Settings\sadmin\.ssh>ssh sadmin@10.4.3.8 -v -v -v OpenSSH_3.8.1p1, OpenSSL 0.9.7d 17 Mar 2004 debug1: Reading... (2 Replies)
Discussion started by: venusunil
2 Replies

4. AIX

unix host actively refused the connection attempt

Dear all, I am faced with an error "UX ER087-0" failling to connect to the server. Any ideas of what might be causing the error? Many thanks (17 Replies)
Discussion started by: captain.scorpio
17 Replies

5. UNIX for Dummies Questions & Answers

Decreasing SSL connection timeout

hi people, i need help about timeout duration of ssl while connecting to another server in network. this is what i try bash-3.00# time ssh root@10.10.10.10 "date" ssh: connect to host 10.10.10.10 port 22: Connection timed out real 3m10.215s user 0m0.007s sys 0m0.011sthere is no... (2 Replies)
Discussion started by: sdkbjk
2 Replies

6. Solaris

Internet connection failed on solaris 10

Hi, i am new bie on solaris ,i just installed it on vmware. i tryed to connect to the internet from solaris but it failed. during the installation i ignore the DHCP and i assign a fixed ip address to the host. is that has an impact on internet access ? and if so how to add another interface... (3 Replies)
Discussion started by: Mirsol
3 Replies

7. Red Hat

Proxy tunneling failed: ForbiddenUnable to establish SSL connection.

Tryied both ways curl and wget wget --no-check-certificate https://mysitet.it:61617 --2017-05-05 17:29:02-- https://mysitet.it:61617/ Connecting to myproxy:8080... connected. Proxy tunneling failed: ForbiddenUnable to establish SSL connection. curl https://mysite.it:61617 curl: (56)... (3 Replies)
Discussion started by: charli1
3 Replies

8. Forum Support Area for Unregistered Users & Account Problems

Further to my query re: failed attempt to change email address on existing account

Neo Thanks for your reply to my original post, entitled "Problem changing the email address associated with my unix.com account". I am unable to reply to you in that thread, as I am unable to log-on to unix.com! From what you said about purging dormant accounts, it is likely that my account... (1 Reply)
Discussion started by: irb
1 Replies

9. Shell Programming and Scripting

Tcl / expect need to attempt telnet if failed ssh

Morning and Happy New Year to all. I am in a situation where I need to connect to a list of devices that are using either telnet or ssh. I want to try to telnet, if I receive any of the following I want to attempt ssh : "Connection refused" "Connection timed out" timeout expiration ... (3 Replies)
Discussion started by: popeye
3 Replies

10. Proxy Server

Httpd proxy on AIX: failed to connect SSL

Hi, I am trying to migrate a quite old proxy server with Apache httpd, running on AIX The scenario is that my server accepts connections on http and proxies them to an SSL backend. This is done in a ProxyPass statement, as follows: ProxyPass /myservice/my-ws... (1 Reply)
Discussion started by: trifo75
1 Replies
rpoll(3)							  BEGEMOT Library							  rpoll(3)

NAME
rpoll - callback functions for file descriptors and timers SYNOPSIS
# include <rpoll.h> typedef void (*poll_f)(int fd, int mask, void *arg); typedef void (*timer_f)(int tid, void *arg); int poll_register(int fd, poll_f func, void *arg, int mask); void poll_unregister(int handle); int poll_start_timer(u_int msecs, int repeat, timer_f func, void *arg); void poll_stop_timer(int handle); int poll_start_utimer(unsigned long long usecs, int repeat, timer_f func, void *arg); void poll_dispatch(int wait); DESCRIPTION
Many programs need to read from several file descriptors at the same time. Typically in these programs one of select(3c) or poll(2) is used. These calls are however clumsy to use and the usage of one of these calls is probably not portable to other systems - not all sys- tems support both calls. The rpoll(l) family of functions is designed to overcome these restrictions. They support the well known and understood technique of event driven programing and, in addition to select(3c) and poll(2) also support timers. Each event on a file descriptor or each timer event is translated into a call to a user defined callback function. These functions need to be registered. A file descriptor is registered with poll_register. fd is the file descriptor to watch, mask is an event mask. It may be any combination of POLL_IN to get informed when input on the file descriptor is possible, POLL_OUT to get informed when output is possible or POLL_EXCEPT to get informed when an exceptional condition occures. An example of an exceptional condition is the arrival of urgent data. (Note, that an end of file condition is signaled via POLL_IN). func is the user function to be called and arg is a user supplied argument for this function. The callback functions is called with the file descriptor, a mask describing the actual events (from the set supplied in the registration) and the user argument. poll_register returns a handle, which may be used later to de-register the file descriptor. A file descriptor may be registered more than once, if the function, the user arguments or both differ in the call to poll_register. If func and arg are the same, then no new registration is done, instead the event mask of the registration is changed to reflect the new mask. A registered file descriptor may be de-registered by calling poll_unregister with the handle returned by poll_register. A timer is created with poll_start_timer or poll_start_utimer. msecs is the number of milliseconds in poll_start_timer while usecs is the number of microseconds in poll_start_utimer, after which the timer event will be generated. If the functions use the poll(2) system call, then usecs is rounded to milliseconds and poll_start_timer is called. repeat selects one-short behavior (if 0) or a repeatable timer (if not 0). A one-short timer will automatically unregistered after expiry. func is the user function which will be called with a timer id and the user supplied arg. poll_start_timer and poll_start_utimer return a timer id, which may be used to cancel the timer with poll_stop_timer. A one-short timer should be canceled only if it has not yet fired. poll_dispatch must be called to actually dispatch events. wait is a flag, which should be 0, if only a poll should be done. In this case, the function returns, after polling the registered file descriptors and timers. If wait is not 0, poll_dispatch waits until an event occures. All events are dispatch (i.e. callback functions called) and poll_dispatch returns. Typical use is: while(1) poll_dispatch(1); SEE ALSO
poll(2),select(3C) RETURN VALUES
poll_register , poll_start_timer and poll_start_utimer return a handle which may be used to unregister the file descriptor or cancel the timer. Both functions and poll_dispatch call xrealloc(l) and can end in panic(l). ERRORS
System call or memory allocation errors are fatal and are handle by calling panic(l). The one exception is a return of EINTR from select(3c) or poll(2) in poll_dispatch. In this case poll_dispatch simply returns. BUGS
Obscure sequences of poll_start_timer and poll_stop_timer in callback functions may probably break the code. The semantics of POLL_EXCEPT are not clear. AUTHORS
Hartmut Brandt, harti@freebsd.org BEGEMOT
8 Dec 2006 rpoll(3)
All times are GMT -4. The time now is 09:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy