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