Lines Matching defs:newopts
284 ServerOptions *newopts;
289 if (len != sizeof(*newopts))
291 newopts = xcalloc(sizeof(*newopts), 1);
292 memcpy(newopts, p, sizeof(*newopts));
295 if (newopts->x != NULL && \
296 (r = sshbuf_get_cstring(m, &newopts->x, NULL)) != 0) \
300 newopts->x = newopts->nx == 0 ? \
301 NULL : xcalloc(newopts->nx, sizeof(*newopts->x)); \
302 for (i = 0; i < newopts->nx; i++) { \
304 &newopts->x[i], NULL)) != 0) \
313 copy_set_server_options(&options, newopts, 1);
318 free(newopts);