poedat
struct poedat *poedat = (struct poedat *)arg;
if (poedat->tcl != NULL)
if (tcl->tcl_rsessid == poedat->sessid &&
((!poedat->isdata && tcl->tcl_ctrl_tll == poedat->tll) ||
(poedat->isdata && tcl->tcl_data_tll == poedat->tll)) &&
poedat->srcaddr,
poedat->tcl = tcl;
struct poedat poedat;
poedat.sessid = sessid;
poedat.tll = tll;
poedat.srcaddr = srcaddr;
poedat.tcl = NULL;
poedat.isdata = isdata;
tclvm_pppoe_search, &poedat);
if ((tcl = poedat.tcl) != NULL) {