Searched refs:serverParams (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/sslAlert/
H A DsslAlert.cpp162 SslAppTestParams serverParams; local
241 clientParams = clientDefaults; serverParams = serverDefaults;
242 serverParams.port = portNum;
243 SSL_THR_RUN(serverParams, clientParams, desc, ourRtn);
250 SSL_THR_SETUP(serverParams, clientParams, clientDefaults, serverDefault);
253 serverParams.expectRtn = errSSLPeerUnknownCA;
254 SSL_THR_RUN(serverParams, clientParams, desc, ourRtn);
261 SSL_THR_SETUP(serverParams, clientParams, clientDefaults, serverDefault);
262 serverParams.tryVersion = kSSLProtocol3;
263 serverParams
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/clAppUtils/
H A DsslThreading.h112 * On entry, serverParams->port is the port we attempt to run on;
115 * serverParams->port is what's used for the client side.
118 SslAppTestParams *serverParams,
130 #define SSL_THR_SETUP(serverParams, clientParams, clientDefaults, serverDefault) \
133 serverPort = serverParams.port + 1; \
135 serverParams = serverDefaults; \
136 serverParams.port = serverPort; \
139 #define SSL_THR_RUN(serverParams, clientParams, desc, ourRtn) \
141 thisRtn = sslRunSession(&serverParams, &clientParams, desc); \
150 #define SSL_THR_RUN_NUM(serverParams, clientParam
[all...]
H A DsslAppUtils.cpp1408 * On entry, serverParams->port is the port we attempt to run on;
1411 * serverParams->port is what's used for the client side.
1415 SslAppTestParams*serverParams,
1435 if(pthread_mutex_init(&serverParams->pthreadMutex, NULL)) {
1439 if(pthread_cond_init(&serverParams->pthreadCond, NULL)) {
1443 serverParams->serverReady = false; // server sets true
1446 sslServerThread, serverParams);
1453 if(pthread_mutex_lock(&serverParams->pthreadMutex)) {
1457 while(!serverParams->serverReady) {
1458 if(pthread_cond_wait(&serverParams
[all...]
/macosx-10.10.1/Security-57031.1.35/sslViewer/
H A DsslThreading.h107 * On entry, serverParams->port is the port we attempt to run on;
110 * serverParams->port is what's used for the client side.
113 SslAppTestParams *serverParams,
125 #define SSL_THR_SETUP(serverParams, clientParams, clientDefaults, serverDefault) \
128 serverPort = serverParams.port + 1; \
130 serverParams = serverDefaults; \
131 serverParams.port = serverPort; \
134 #define SSL_THR_RUN(serverParams, clientParams, desc, ourRtn) \
136 thisRtn = sslRunSession(&serverParams, &clientParams, desc); \
145 #define SSL_THR_RUN_NUM(serverParams, clientParam
[all...]
H A DsslAppUtils.cpp1378 * On entry, serverParams->port is the port we attempt to run on;
1381 * serverParams->port is what's used for the client side.
1385 SslAppTestParams*serverParams,
1397 if(pthread_mutex_init(&serverParams->pthreadMutex, NULL)) {
1401 if(pthread_cond_init(&serverParams->pthreadCond, NULL)) {
1405 serverParams->serverReady = false; // server sets true
1408 sslServerThread, serverParams);
1415 if(pthread_mutex_lock(&serverParams->pthreadMutex)) {
1419 while(!serverParams->serverReady) {
1420 if(pthread_cond_wait(&serverParams
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/sslCipher/
H A DsslCipher.cpp389 SslAppTestParams serverParams; local
488 serverParams.port = portNum - 1; // gets incremented by SSL_THR_SETUP
508 SSL_THR_SETUP(serverParams, clientParams, clientDefaults,
515 serverParams.acceptedProts = groupParams->serveAcceptProts;
517 serverParams.expectVersion = groupParams->expectProt;
524 serverParams.ciphers = serverCiphers;
525 serverParams.expectCipher = cipherParams->expectCipher;
529 serverParams.myCertKcName = certParams->kcName;
530 serverParams.password = certParams->kcPassword;
534 serverParams
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/sslAuth/
H A DsslAuth.cpp243 SslAppTestParams serverParams; local
336 serverParams.port = portNum - 1; // gets incremented by SSL_THR_SETUP
341 SSL_THR_SETUP(serverParams, clientParams, clientDefaults,
348 serverParams.tryVersion = authParams->serverTryProt;
349 serverParams.expectVersion = authParams->serverActProt;
350 serverParams.authenticate = authParams->tryAuth;
351 serverParams.expectCertState = authParams->serverAuthState;
352 serverParams.expectRtn = authParams->serverStatus;
360 SSL_THR_RUN_NUM(serverParams, clientParams, authParams->testDesc,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/sslViewer/
H A DsslAppUtils.cpp1424 * On entry, serverParams->port is the port we attempt to run on;
1427 * serverParams->port is what's used for the client side.
1431 SslAppTestParams*serverParams,
1443 if(pthread_mutex_init(&serverParams->pthreadMutex, NULL)) {
1447 if(pthread_cond_init(&serverParams->pthreadCond, NULL)) {
1451 serverParams->serverReady = false; // server sets true
1454 sslServerThread, serverParams);
1461 if(pthread_mutex_lock(&serverParams->pthreadMutex)) {
1465 while(!serverParams->serverReady) {
1466 if(pthread_cond_wait(&serverParams
[all...]
/macosx-10.10.1/smb-759.0/lib/smb/
H A Dremount.c123 CFDictionaryRef serverParams = NULL; local
158 error = smb_get_server_info(ctx, NULL, openOptions, &serverParams);
216 if (serverParams) {
217 CFRelease(serverParams);
H A Dmsdfs.c1805 CFDictionaryRef serverParams = NULL; local
1863 error = smb_get_server_info(newConn, url, openOptions, &serverParams);
1871 if (serverParams) {
1872 CFRelease(serverParams);
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/sslProt/
H A DsslProt.cpp929 SslAppTestParams serverParams; local
996 serverParams.port = portNum - 1; // gets incremented by SSL_THR_SETUP
1030 SSL_THR_SETUP(serverParams, clientParams, clientDefaults,
1036 serverParams.tryVersion = protParams->servTryVersion;
1038 serverParams.acceptedProts = protParams->serveAcceptProts;
1040 serverParams.expectVersion = protParams->expectServerProt;
1042 serverParams.expectRtn = protParams->serveStatus;
1044 serverParams.serverAbort = protParams->serverAbort;
1046 SSL_THR_RUN_NUM(serverParams, clientParams, protParams->testDesc,

Completed in 242 milliseconds