Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using c . I have fd1 as a file descriptor, can I call like this twice?

main () {
....
shutdown(fd1, SHUT_WR);
....
shutdown(fd1, SHUT_WR);
....
}

I personally think it works because fd1 has not been really free yet. Just want somebody to confirm.

share|improve this question

3 Answers

up vote 2 down vote accepted

You should check the return value of the second call - shutdown(2) probably returns -1 - and check the value of errno(3).

share|improve this answer
So shutdown(2) still works and the result is probably -1 ? I'm just worried if shutdown(2) can crash my program by sending some kind of signal, like SIGPIPE ... – tsubasa Nov 13 '10 at 4:28
No, returning -1 means it didn't work, it's the error return value. That doesn't mean you should write your programs so you don't know the state of the socket when you poke at it. – Nikolai N Fetissov Nov 13 '10 at 4:31
So will the 2nd call kill the program ? – tsubasa Nov 13 '10 at 5:37
@tsubasa: No, the second call won't kill the program: it will (almost certainly) simply return -1 with errno set to EBADF - as you could establish by testing for yourself the return value of the function. – Jonathan Leffler Nov 13 '10 at 5:45
thank you much, that's all i need to know. my program is getting so complicated that i can't test it simply. – tsubasa Nov 13 '10 at 6:18

You can call it once to shutdown the output and again to shutdown the input, or vice versa. Calling it twice to shutdown the output certainly won't send two FINs, whatever else it may do. Calling it twice to shutdown the input can't do anything twice either. So neither of those can possibly have any actual point.

share|improve this answer

Calling shutdown simply initiates a TCP level shutdown sequence. The socket descriptor is never released for reuse until you call close on it.

You can call shutdown as often as you like, though it's likely that subsequent calls will result in an error.

Call close when you are done with the socket.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.