Lines Matching refs:nghttpx
108 def nghttpx(env, httpd) -> Generator[Nghttpx, None, None]: function
109 nghttpx = NghttpxQuic(env=env)
110 if nghttpx.exists() and (env.have_h3() or nghttpx.https_port > 0):
111 nghttpx.clear_logs()
112 assert nghttpx.start()
113 yield nghttpx
114 nghttpx.stop()
118 nghttpx = NghttpxFwd(env=env)
119 if nghttpx.exists() and (env.have_h3() or nghttpx.https_port > 0):
120 nghttpx.clear_logs()
121 assert nghttpx.start()
122 yield nghttpx
123 nghttpx.stop()