MCPcopy Create free account
hub / github.com/apache/trafficserver / CB_out_start

Function CB_out_start

tests/tools/plugins/ssl_hook_test.cc:90–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90int
91CB_out_start(TSCont cont, TSEvent event, void *edata)
92{
93 TSVConn ssl_vc = reinterpret_cast<TSVConn>(edata);
94
95 int count = reinterpret_cast<intptr_t>(TSContDataGet(cont));
96
97 Dbg(dbg_ctl, "Outbound start callback %d %p - event is %s", count, ssl_vc,
98 event == TS_EVENT_VCONN_OUTBOUND_START ? "good" : "bad");
99
100 // All done, reactivate things
101 TSVConnReenable(ssl_vc);
102 return TS_SUCCESS;
103}
104
105int
106CB_out_start_delay(TSCont cont, TSEvent event, void *edata)

Callers

nothing calls this directly

Calls 2

TSContDataGetFunction · 0.85
TSVConnReenableFunction · 0.85

Tested by

no test coverage detected