Class: Net::FTP::BufferedSSLSocket
Do not use. This class is for internal use only.
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
BufferedSocket,
BufferedIO
|
|
|
Instance Chain:
self,
BufferedSocket,
BufferedIO
|
|
| Inherits: |
Net::FTP::BufferedSocket
|
| Defined in: | lib/net/ftp.rb |
Instance Method Summary
Instance Method Details
#send(mesg, flags, dest = nil)
[ GitHub ]# File 'lib/net/ftp.rb', line 1552
def send(mesg, flags, dest = nil) # Ignore flags and dest. @io.write(mesg) end
#shutdown(*args)
[ GitHub ]# File 'lib/net/ftp.rb', line 1547
def shutdown(*args) # Invokes SSL_shutdown, which sends a close_notify message to the peer. @io.__send__(:stop) end