Sponsored Content
Special Forums IP Networking checking a connection still exists? Post 302151184 by porter on Thursday 13th of December 2007 07:14:03 PM
Old 12-13-2007
Quote:
Originally Posted by fishman2001
Is there any way to check that the socket is still alive before sending data?
option 1. Use select() to tell you if there is anything to read and when you can write, if the connection drops then you will be told you can read something and will then get the appropriate error returned by "recv", only "send" if select tells you can write.

option 2. install a SIGPIPE signal handler around the send() to catch any raised signal, then restore the handler after the send.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Checking the file if it exists

Hi This will be useful who is looking for checking the files in a directory #chmod 777 /cronacle/tools/teradata/opo/bin/file_check.sh SUBJECT=`echo "File Not Found"` SUBJECT1=`echo "File Found"` #RECIPIENT=Madhu.Reddy@ge.com cd /cronacle/tools/teradata/opo/bin file_list=attach.sh if ... (3 Replies)
Discussion started by: ksmbabu
3 Replies

2. Shell Programming and Scripting

Checking if a file exists

How can I check if a file exists in shell script. Basically, I want to check if a file Test_msgs has been created today. If it has been then append data to it. Otherwise, create it. I have written the following but it does not work. todaysdate=$(date +%d%m%Y) timenow=$(date +%H%M%S)... (4 Replies)
Discussion started by: gugs
4 Replies

3. Shell Programming and Scripting

checking textfile exists or not in all directories

Hai All, please help me in solving this assignment!!! i need a unix script that has to check the text file exists or not in all directories and sub directories if textfile exists display the directory path else display does not exists!! example: kamal.txt that i want to search if the... (5 Replies)
Discussion started by: G.K.K
5 Replies

4. Shell Programming and Scripting

Checking if file exists

How can I check if a file exists in csh? I know there is "-e $file" but do not know exactly how to use it. I have tried the below but I'm getting "Bad : modifier in $ ( )." foreach f ($AfullnameLst) if (-e $f) then echo "$f: file exists" endif end (6 Replies)
Discussion started by: kristinu
6 Replies

5. Shell Programming and Scripting

what is the difference between -f and -e, when checking for file exists

Hi All, what is the difference between -f and -e. Regards, ch33ry (1 Reply)
Discussion started by: ch33ry
1 Replies

6. Shell Programming and Scripting

Checking whether the file exists under a directory and doing a diff

Hi Everyone, I am writing a shell script for the below needs and would like your suggestions and advices. I have a lot of scripting files(Shell Scripts) under the directory: /home/risk_dev/dev I have another directory which has a lot of shell scripts under the directory: ... (2 Replies)
Discussion started by: filter
2 Replies

7. Shell Programming and Scripting

Checking if file exists and unzipping

Hey, I am new to scripting and was wondering what is wrong with this if statement. I want to check if file exists and the if it does to unzip it. I program it as follows if ; then gunzip *_filename.gz fi Thanks in advance! Please use code tags next time for your code and data. (10 Replies)
Discussion started by: mostarac2487
10 Replies

8. Shell Programming and Scripting

Problem with ssh and checking if file exists

Hi All, I am facing a problem while checking for existence of file over ssh ! Basically, i want to ssh and check if file exists.. If file exists return 1. If file does not exits return 0 (or any value) I am using the below code file_avail=`ssh username@host "if ]; then exit 1;... (10 Replies)
Discussion started by: galaxy_rocky
10 Replies

9. Shell Programming and Scripting

For loop without checking file exists

In several scripts that process files matched by name pattern I needed to add a check for file existence. Just to illustrate let's say I need to process all N??? files: /tmp$ touch N100 N101 /tmp$ l ?10 -rw-rw-r-- 1 moss group 0 Apr 19 11:22 N100 -rw-rw-r-- 1 moss group ... (10 Replies)
Discussion started by: migurus
10 Replies

10. UNIX for Beginners Questions & Answers

Code for checking if certain no of files exists

Hi, I am writing the shell script in ksh to check certain no of files exists,In my case there are 7 files exist like below Sales1_timstamp.csv Sales2_timstamp.csv Sales3_timstamp.csv Sales4_timstamp.csv Sales5_timstamp.csv Sales7_timstamp.csv Sales7_timstamp.csv Once all the files... (4 Replies)
Discussion started by: SRPR
4 Replies
SEND(P) 						     POSIX Programmer's Manual							   SEND(P)

NAME
send - send a message on a socket SYNOPSIS
#include <sys/socket.h> ssize_t send(int socket, const void *buffer, size_t length, int flags); DESCRIPTION
The send() function shall initiate transmission of a message from the specified socket to its peer. The send() function shall send a mes- sage only when the socket is connected (including when the peer of a connectionless socket has been set via connect()). The send() function takes the following arguments: socket Specifies the socket file descriptor. buffer Points to the buffer containing the message to send. length Specifies the length of the message in bytes. flags Specifies the type of message transmission. Values of this argument are formed by logically OR'ing zero or more of the following flags: MSG_EOR Terminates a record (if supported by the protocol). MSG_OOB Sends out-of-band data on sockets that support out-of-band communications. The significance and semantics of out-of-band data are protocol-specific. The length of the message to be sent is specified by the length argument. If the message is too long to pass through the underlying proto- col, send() shall fail and no data shall be transmitted. Successful completion of a call to send() does not guarantee delivery of the message. A return value of -1 indicates only locally-detected errors. If space is not available at the sending socket to hold the message to be transmitted, and the socket file descriptor does not have O_NON- BLOCK set, send() shall block until space is available. If space is not available at the sending socket to hold the message to be trans- mitted, and the socket file descriptor does have O_NONBLOCK set, send() shall fail. The select() and poll() functions can be used to deter- mine when it is possible to send more data. The socket in use may require the process to have appropriate privileges to use the send() function. RETURN VALUE
Upon successful completion, send() shall return the number of bytes sent. Otherwise, -1 shall be returned and errno set to indicate the error. ERRORS
The send() function shall fail if: EAGAIN or EWOULDBLOCK The socket's file descriptor is marked O_NONBLOCK and the requested operation would block. EBADF The socket argument is not a valid file descriptor. ECONNRESET A connection was forcibly closed by a peer. EDESTADDRREQ The socket is not connection-mode and no peer address is set. EINTR A signal interrupted send() before any data was transmitted. EMSGSIZE The message is too large to be sent all at once, as the socket requires. ENOTCONN The socket is not connected or otherwise has not had the peer pre-specified. ENOTSOCK The socket argument does not refer to a socket. EOPNOTSUPP The socket argument is associated with a socket that does not support one or more of the values set in flags. EPIPE The socket is shut down for writing, or the socket is connection-mode and is no longer connected. In the latter case, and if the socket is of type SOCK_STREAM, the SIGPIPE signal is generated to the calling thread. The send() function may fail if: EACCES The calling process does not have the appropriate privileges. EIO An I/O error occurred while reading from or writing to the file system. ENETDOWN The local network interface used to reach the destination is down. ENETUNREACH No route to the network is present. ENOBUFS Insufficient resources were available in the system to perform the operation. The following sections are informative. EXAMPLES
None. APPLICATION USAGE
The send() function is equivalent to sendto() with a null pointer dest_len argument, and to write() if no flags are used. RATIONALE
None. FUTURE DIRECTIONS
None. SEE ALSO
connect() , getsockopt() , poll() , recv() , recvfrom() , recvmsg() , select() , sendmsg() , sendto() , setsockopt() , shutdown() , socket() , the Base Definitions volume of IEEE Std 1003.1-2001, <sys/socket.h> COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technol- ogy -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html . IEEE
/The Open Group 2003 SEND(P)
All times are GMT -4. The time now is 10:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy