Sponsored Content
Top Forums Shell Programming and Scripting How to timeout and proceed in perl? Post 302661209 by itkamaraj on Monday 25th of June 2012 03:46:32 AM
Old 06-25-2012
This User Gave Thanks to itkamaraj For This Post:
 

8 More Discussions You Might Find Interesting

1. Programming

I am porting Dll from NT to Unix, how should I proceed

I am porting Dll from Windows NT to Unix, Could any body pls guide me how should I proceed?? (3 Replies)
Discussion started by: Vipin
3 Replies

2. UNIX for Dummies Questions & Answers

How can i proceed on this (datecheck)

Hi, I want to bundle if statements The script which i created is if ]; then if ]; then now=`TZ=CST+24 date +%Y-%m-%d` nows=`TZ=CST+24 date +%Y-%m-%d` ; else ]; then now=`TZ=CST+48 date +%Y-%m-%d` nows=`TZ=CST+48 date +%Y-%m-%d` ; fi now=`TZ=CST+24 date +%Y-%m-%d` nows=`date... (2 Replies)
Discussion started by: gopskrish
2 Replies

3. Shell Programming and Scripting

Need help for automating a task. How to proceed ?.

Dear friends, I am trying to prepare a shell script which do the following task. Being a beginner in scripting I need a bit of help from you all for shell script which does the following job. 1.Check for existence of a file in a shared directory (at some remote location ) once in a day ... (1 Reply)
Discussion started by: aarora_98
1 Replies

4. UNIX for Dummies Questions & Answers

Using exit status of GREP to proceed

Hi I have a script that carries out a "grep" command, and displays the output on screen. What I need to do is utilise the exit status of this grep, so that, for example, if it returns no entries, it asks the user if they want to set up a new user, and if the grep returns an entry, it states... (1 Reply)
Discussion started by: Great Uncle Kip
1 Replies

5. Solaris

Zlogin -C with out user Interaction how to proceed?

Hi Guys, I have one requirement like if we run install.sh file it should have to create a zone and install oracle in that zone with out any user interaction. So the complete code should be automated. Almost 90% of the code I completed but i am having some doubts 1) After the zone creation... (1 Reply)
Discussion started by: vijaysachin
1 Replies

6. Web Development

Request to check:PHP help hw to proceed

Hi I am new to PHP. I have to changed a website design adn add certain features and lnks which shuld direct it towards other website. Can any body help me how to proceed. I have some already made templates to do this. I am conpletely new.. So, I have to first install Php from... (0 Replies)
Discussion started by: manigrover
0 Replies

7. Shell Programming and Scripting

how to proceed when curl is finished

I have a script which uses cli curl to download the source code of a webpage and then tests if a specific string exists in the source. The problem is that the website has a slow response, so the eval expression hasn't completed when the test starts. The test returns a negative, and the curl... (8 Replies)
Discussion started by: locoroco
8 Replies

8. Shell Programming and Scripting

Script to Proceed to the Next IP if the current IP hangs

Hi there, Say I have a list of IPs, I am running scripts on them. If the process hang. I want to continue with the rest of the IPs. 10.11.1.1 10.11.1.2 10.11.1.3 10.11.1.4 10.11.1.5 10.11.1.6 <-- Process Hangs here 10.11.1.7 10.11.1.8 10.11.1.9 10.11.1.10 10.11.1.11 10.11.1.12 ... (11 Replies)
Discussion started by: alvinoo
11 Replies
ns_sock(3aolserver)					    AOLserver Built-In Commands 				       ns_sock(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
ns_sockaccept, ns_sockblocking, ns_sockcallback, ns_sockcheck, ns_socketpair, ns_socklisten, ns_socklistencallback, ns_socknonblocking, ns_socknread, ns_sockopen, ns_sockselect - Network socket commands SYNOPSIS
ns_sockaccept sockid ns_sockblocking sockid ns_sockcallback sockid script when ns_sockcheck fileid ns_socketpair ns_socklisten address port ns_socklistencallback address port script ns_socknonblocking sockid ns_socknread sockid ns_sockopen ?-nonblock | -timeout seconds? host port ns_sockselect ?-timeout seconds? rfds wfds efds _________________________________________________________________ DESCRIPTION
Performs one of several network socket operations, providing a means to manipulate and use sockets directly within AOLserver. ns_sockaccept sockid Accepts a new connection on the socket specified by sockid and returns a list containing the read and write file descriptors for the socket, respectively. The file descriptors can be used with Tcl's puts, gets, read or any other Tcl socket manipulation commands. ns_sockaccept does not create a socket for you. It is normally used in conjunction with ns_sockcallback, ns_socklisten, and ns_sock- listencallback. You can use ns_sockcheck to see if the socket is valid before using ns_sockaccept on it. ns_sockblocking sockid Sets the socket specified by sockid to blocking mode. In blocking mode, an operation on a socket must complete before the command can return. This can cause your process or thread to block forever if the operation does not complete. If that happens in an ADP, the page may never complete until the socket is interrupted, closed or a TCP timeout occurs. ns_sockcallback sockid script when Registers a socket callback script that will be run when a connection is made to the socket specified by sockid. The socket must already exist. You can create a socket using ns_socklisten. The script should accept sockid and when as its first two arguments. The script is responsible for doing an ns_sockaccept on sockid prior to reading from and writing to the socket. If the same script will handle all when values, you must still register the script four separate times, once for each type of when value. The when value is passed to script when script is invoked. The when value is one of: r - the socket is readable w - the socket is writeable e - the socket has an exceptional condition x - the server is shutting down ns_sockcheck fileid Uses recv() or send() calls to check if a socket is still connected. The fileid is the read or write file id returned by ns_sock- open. This function is useful if you used the -nonblock option with ns_sockopen after calling ns_sockselect. ns_socketpair Creates a pair of connected sockets and returns a list of file ids: the first one for reads and the second one for writes. ns_socklisten address port Creates a new socket and listens for connections at the specified address and port. An asterisk (*) can be used as the address argument to specify all addresses. The socket id is returned. You must use ns_sockaccept to accept connections on the socket. ns_socklistencallback address port script Creates a new socket and listens for connections at the specified address and port. An asterisk (*) can be used as the address argument to specify all addresses. Runs script when a new connection is received. The script must use ns_sockaccept on the ns_socknonblocking sockid Sets the socket specified by sockid to nonblocking. ns_socknread sockid Returns the number of bytes waiting to be read from the socket specified by sockid. ns_sockopen ?-nonblock | -timeout seconds? host port Uses the socket(), bind() and connect() calls to connect to the remote host on the specified port. ns_sockopen returns a list containing the read and write fileids, respectively. The -nonblock option causes ns_sockopen to return immediately, while the connect is still in progress by the operating system. Use ns_sockcheck with the write fileid to see if the connect has completed before attempting to read from or write to the socket. The -timeout option specifies how long to wait for the connect to be made in seconds before timing out. ns_sockselect ?-timeout seconds? rfds wfds efds Uses a call to select() to determine which fileids are readable, writable or have exceptional conditions. ns_sockselect returns a list of three lists: readable fileids, writable fileids, and the fileids with exceptions. The -timeout option specifies how many seconds to wait for ns_sockselect before timing out. The rfds, wfds and efds arguments are lists of readable fileids, writeable fileids, and fileids with exceptions, respectively. Be careful using these socket commands in an ADP or a procedure called by an ADP. If a socket command hangs, the page may not finish being served to the user until the TCP connection times out, typically several minutes later. SEE ALSO
nsd(1), info(n) KEYWORDS
AOLserver 4.0 ns_sock(3aolserver)
All times are GMT -4. The time now is 03:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy