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:
Richard Frith-MacDonald 2012-12-08 08:46:20 +00:00
parent f0fa7fbe28
commit 17bdc5cfe2
4 changed files with 55 additions and 39 deletions

View file

@ -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;