Home | History | Annotate | Download | only in slirp-android

Lines Matching refs:emup

602 	struct emu_t *emup;
649 for (emup = tcpemu; emup; emup = emup->next) {
650 if (emup->lport == lport && emup->fport == fport) {
657 emup = (struct emu_t *)malloc(sizeof (struct emu_t));
658 emup->lport = (u_int16_t)lport;
659 emup->fport = (u_int16_t)fport;
660 emup->tos = tos;
661 emup->emu = emu;
662 emup->next = tcpemu;
663 tcpemu = emup;
676 lprint("Adding emulation for %s to port %d/%d\r\n", buff1, emup->lport, emup->fport);