summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--paramiko/channel.py20
1 files changed, 17 insertions, 3 deletions
diff --git a/paramiko/channel.py b/paramiko/channel.py
index 534f8d7c..9a1bb874 100644
--- a/paramiko/channel.py
+++ b/paramiko/channel.py
@@ -25,6 +25,7 @@ import sys
import time
import threading
import socket
+import errno
import os
from paramiko.common import *
@@ -605,6 +606,10 @@ class Channel (object):
@raise socket.timeout: if no data is ready before the timeout set by
L{settimeout}.
"""
+ if self.closed:
+ # this doesn't seem useful, but it is the documented behavior of Socket
+ raise socket.error(errno.EBADF, 'Socket is closed')
+
try:
out = self.in_buffer.read(nbytes, self.timeout)
except PipeTimeout, e:
@@ -655,6 +660,10 @@ class Channel (object):
@since: 1.1
"""
+ if self.closed:
+ # this doesn't seem useful, but it is the documented behavior of Socket
+ raise socket.error(errno.EBADF, 'Socket is closed')
+
try:
out = self.in_stderr_buffer.read(nbytes, self.timeout)
except PipeTimeout, e:
@@ -708,6 +717,10 @@ class Channel (object):
@raise socket.timeout: if no data could be sent before the timeout set
by L{settimeout}.
"""
+ if self.closed:
+ # this doesn't seem useful, but it is the documented behavior of Socket
+ raise socket.error(errno.EBADF, 'Socket is closed')
+
size = len(s)
self.lock.acquire()
try:
@@ -745,6 +758,10 @@ class Channel (object):
@since: 1.1
"""
+ if self.closed:
+ # this doesn't seem useful, but it is the documented behavior of Socket
+ raise socket.error(errno.EBADF, 'Socket is closed')
+
size = len(s)
self.lock.acquire()
try:
@@ -783,9 +800,6 @@ class Channel (object):
This is irritating, but identically follows python's API.
"""
while s:
- if self.closed:
- # this doesn't seem useful, but it is the documented behavior of Socket
- raise socket.error('Socket is closed')
sent = self.send(s)
s = s[sent:]
return None