Lines Matching defs:ssi
404 lws_ss_info_t ssi;
411 memset(&ssi, 0, sizeof(ssi));
412 ssi.handle_offset = offsetof(myss_t, ss);
413 ssi.opaque_user_data_offset = offsetof(myss_t, opaque_data);
414 ssi.rx = myss_rx;
415 ssi.tx = myss_tx;
416 ssi.state = myss_state;
418 ssi.dump = myss_headers_dump;
420 ssi.user_alloc = sizeof(myss_t);
421 ssi.streamtype = test_ots ? "mintest-ots" :
424 if (lws_ss_create(cx, 0, &ssi, NULL, NULL, NULL, NULL)) {