We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1c579 commit b1e7487Copy full SHA for b1e7487
1 file changed
libcurvecpr/lib/server_recv.c
@@ -171,6 +171,7 @@ static int _handle_initiate (struct curvecpr_server *server, struct curvecpr_ses
171
/* All good, we can go ahead and submit the client for registration. */
172
s_new.their_session_nonce = curvecpr_bytes_unpack_uint64(p->nonce);
173
curvecpr_bytes_copy(s_new.my_domain_name, p_box->server_domain_name, 256);
174
+ curvecpr_bytes_copy(s_new.their_extension, p->client_extension, 16);
175
176
if (cf->ops.put_session(server, &s_new, priv, &s_new_stored))
177
return -EINVAL; /* This can fail for a variety of reasons that are up to
0 commit comments