Lines Matching refs:vh
131 struct lws_vhost *vh = context->vhost_list; in elops_init_pt_ev() local
155 while (vh) { in elops_init_pt_ev()
156 if (vh->lserv_wsi) { in elops_init_pt_ev()
157 vh->lserv_wsi->w_read.context = context; in elops_init_pt_ev()
158 vh->w_accept.context = context; in elops_init_pt_ev()
160 ev_io_init(&vh->w_accept.ev.watcher, lws_accept_cb, in elops_init_pt_ev()
161 vh->lserv_wsi->desc.sockfd, EV_READ); in elops_init_pt_ev()
162 ev_io_start(loop, &vh->w_accept.ev.watcher); in elops_init_pt_ev()
165 vh = vh->vhost_next; in elops_init_pt_ev()
225 struct lws_vhost *vh = context->vhost_list; in elops_destroy_pt_ev() local
227 while (vh) { in elops_destroy_pt_ev()
228 if (vh->lserv_wsi) in elops_destroy_pt_ev()
229 ev_io_stop(pt->ev.io_loop, &vh->w_accept.ev.watcher); in elops_destroy_pt_ev()
230 vh = vh->vhost_next; in elops_destroy_pt_ev()