Lines Matching defs:ssi
716 lws_ss_info_t ssi;
736 memset(&ssi, 0, sizeof(ssi));
737 ssi.handle_offset = offsetof(myss_t, ss);
738 ssi.opaque_user_data_offset = offsetof(myss_t, opaque_data);
739 ssi.rx = myss_rx;
740 ssi.tx = myss_tx;
741 ssi.state = myss_state;
742 ssi.user_alloc = sizeof(myss_t);
743 ssi.streamtype = ts->streamtype;
747 if (lws_ss_create(context, 0, &ssi, ts, &h, NULL, NULL)) {