Searched defs:peerID (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/net/third_party/nss/ssl/
H A Dsslnonce.c143 if (sid->peerID != NULL)
144 PORT_Free((void *)sid->peerID); /* CONST */
199 ** Lookup sid entry in cache by Address, port, and peerID string.
205 ssl_LookupSID(const PRIPv6Addr *addr, PRUint16 port, const char *peerID, argument
236 /* proxy (peerID) matches */
237 (((peerID == NULL) && (sid->peerID == NULL)) ||
238 ((peerID != NULL) && (sid->peerID != NULL) &&
239 PORT_Strcmp(sid->peerID, peerI
[all...]
H A Dsslsock.c207 ss->peerID = !os->peerID ? NULL : PORT_Strdup(os->peerID);
358 if (ss->peerID != NULL)
359 PORT_Free(ss->peerID);
2380 SSL_SetSockPeerID(PRFileDesc *fd, const char *peerID) argument
2391 if (ss->peerID) {
2392 PORT_Free(ss->peerID);
2393 ss->peerID = NULL;
2395 if (peerID)
[all...]
H A Dsslimpl.h638 const char * peerID; /* client only */ member in struct:sslSessionIDStr
1258 char * peerID; /* String uniquely identifies target server. */ member in struct:sslSocketStr
1486 const char *peerID, const char *urlSvrName);

Completed in 2215 milliseconds