mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-20 12:16:40 +00:00
Documentation tweaks
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22112 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c97daa51dd
commit
1bf4c4c303
32 changed files with 307 additions and 216 deletions
|
@ -726,30 +726,36 @@ NSString * const NSFileHandleOperationException
|
|||
return NSFileHandle_ssl_class;
|
||||
}
|
||||
|
||||
/**
|
||||
* Establishes an SSL connection from the system that the handle is talking to.
|
||||
/** <override-dummy />
|
||||
* Establishes an SSL connection from the system that the handle
|
||||
* is talking to.<br />
|
||||
* This is implented by an SSL handling subclass.<br />
|
||||
* The default implementation just returns NO.
|
||||
*/
|
||||
- (BOOL) sslAccept
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
/**
|
||||
* Establishes an SSL connection to the system that the handle is talking to.
|
||||
/** <override-dummy />
|
||||
* Establishes an SSL connection to the system that the handle
|
||||
* is talking to.<br />
|
||||
* This is implented by an SSL handling subclass.<br />
|
||||
* The default implementation just returns NO.
|
||||
*/
|
||||
- (BOOL) sslConnect
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
/**
|
||||
/** <override-dummy />
|
||||
* Shuts down the SSL connection to the system that the handle is talking to.
|
||||
*/
|
||||
- (void) sslDisconnect
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
/** <override-dummy />
|
||||
* Sets the certificate to be used to identify this process to the server
|
||||
* at the opposite end of the network connection.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue