mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
minor performance tweaks
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35865 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f0fa7fbe28
commit
17bdc5cfe2
4 changed files with 55 additions and 39 deletions
|
@ -63,7 +63,7 @@ extern NSString * const GSTLSVerify;
|
|||
*/
|
||||
@interface GSTLSDHParams : GSTLSObject
|
||||
{
|
||||
NSDate *when;
|
||||
NSTimeInterval when;
|
||||
NSString *path;
|
||||
gnutls_dh_params_t params;
|
||||
}
|
||||
|
@ -90,7 +90,7 @@ extern NSString * const GSTLSVerify;
|
|||
*/
|
||||
@interface GSTLSCertificateList : GSTLSObject
|
||||
{
|
||||
NSDate *when;
|
||||
NSTimeInterval when;
|
||||
NSString *path;
|
||||
gnutls_x509_crt_t *crts;
|
||||
unsigned int count;
|
||||
|
@ -104,7 +104,7 @@ extern NSString * const GSTLSVerify;
|
|||
*/
|
||||
@interface GSTLSPrivateKey : GSTLSObject
|
||||
{
|
||||
NSDate *when;
|
||||
NSTimeInterval when;
|
||||
NSString *path;
|
||||
NSString *password;
|
||||
gnutls_x509_privkey_t key;
|
||||
|
@ -117,7 +117,7 @@ extern NSString * const GSTLSVerify;
|
|||
*/
|
||||
@interface GSTLSCredentials : GSTLSObject
|
||||
{
|
||||
NSDate *when;
|
||||
NSTimeInterval when;
|
||||
NSString *name;
|
||||
GSTLSPrivateKey *key;
|
||||
GSTLSCertificateList *list;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue