Home | History | Annotate | Download | only in slirp

Lines Matching refs:emup

638 	struct emu_t *emup;
685 for (emup = tcpemu; emup; emup = emup->next) {
686 if (emup->lport == lport && emup->fport == fport) {
693 emup = (struct emu_t *)malloc(sizeof (struct emu_t));
694 emup->lport = (u_int16_t)lport;
695 emup->fport = (u_int16_t)fport;
696 emup->tos = tos;
697 emup->emu = emu;
698 emup->next = tcpemu;
699 tcpemu = emup;
712 lprint("Adding emulation for %s to port %d/%d\r\n", buff1, emup->lport, emup->fport);