Lines Matching refs:out
76 struct wpabuf *in, *out, *appl; in https_client() local
96 out = tls_connection_handshake2(tls, conn, in, &appl, in https_client()
100 if (out == NULL) { in https_client()
112 (int) wpabuf_len(out)); in https_client()
113 if (send(s, wpabuf_head(out), wpabuf_len(out), 0) < 0) { in https_client()
117 wpabuf_free(out); in https_client()
118 out = NULL; in https_client()
125 wpabuf_free(out); in https_client()
126 out = NULL; in https_client()
138 out = tls_connection_encrypt(tls, conn, in); in https_client()
141 if (out == NULL) in https_client()
145 (int) wpabuf_len(out)); in https_client()
146 if (send(s, wpabuf_head(out), wpabuf_len(out), 0) < 0) { in https_client()
150 wpabuf_free(out); in https_client()
151 out = NULL; in https_client()
159 out = tls_connection_decrypt2(tls, conn, in, &need_more_data); in https_client()
164 if (out == NULL) in https_client()
166 wpa_hexdump_ascii(MSG_INFO, "Response", wpabuf_head(out), in https_client()
167 wpabuf_len(out)); in https_client()
168 wpabuf_free(out); in https_client()
169 out = NULL; in https_client()
174 wpabuf_free(out); in https_client()