Lines Matching refs:store
653 struct Curl_ssl_session *store;
666 store = &data->state.session[0];
706 store = &data->state.session[i];
711 Curl_ssl_kill_session(store);
713 store = &data->state.session[i]; /* use this slot */
716 store->sessionid = ssl_sessionid;
717 store->idsize = idsize;
718 store->age = *general_age; /* set current age */
720 free(store->name);
721 free(store->conn_to_host);
722 store->name = clone_host; /* clone host name */
723 store->conn_to_host = clone_conn_to_host; /* clone connect to host name */
724 store->conn_to_port = conn_to_port; /* connect to port number */
726 store->remote_port = connssl->port;
727 store->scheme = cf->conn->handler->scheme;
729 if(!clone_ssl_primary_config(conn_config, &store->ssl_config)) {
730 Curl_free_primary_ssl_config(&store->ssl_config);
731 store->sessionid = NULL; /* let caller free sessionid */
741 store->scheme, store->name, store->remote_port,
821 /* store the info in the SSL section */