Changeset 69046 in vbox for trunk/src/VBox/Devices/Network/slirp
- Timestamp:
- Oct 11, 2017 4:11:23 PM (7 years ago)
- Location:
- trunk/src/VBox/Devices/Network/slirp
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/bootp.c
r64307 r69046 771 771 case DHCPDISCOVER: 772 772 fDhcpDiscover = 1; 773 /* fall through */773 RT_FALL_THRU(); 774 774 case DHCPINFORM: 775 775 rc = dhcp_decode_discover(pData, bp, fDhcpDiscover, m); -
trunk/src/VBox/Devices/Network/slirp/bsd/kern/subr_sbuf.c
r30045 r69046 380 380 case ENAMETOOLONG: 381 381 SBUF_SETFLAG(s, SBUF_OVERFLOWED); 382 /* fall through */382 RT_FALL_THRU(); 383 383 case 0: 384 384 s->s_len += done - 1; -
trunk/src/VBox/Devices/Network/slirp/bsd/kern/uipc_mbuf.c
r66828 r69046 302 302 AssertMsgFailed(("unimplemented")); 303 303 #endif 304 /* FALLTHROUGH */304 RT_FALL_THRU(); 305 305 case EXT_EXTREF: 306 306 KASSERT(m->m_ext.ext_free != NULL, -
trunk/src/VBox/Devices/Network/slirp/dnsproxy/dnsproxy.c
r62511 r69046 615 615 fprintf(stderr, PACKAGE_STRING "\n"); 616 616 exit(0); 617 /* FALLTHROUGH */617 RT_FALL_THRU(); 618 618 case 'h': 619 619 default: -
trunk/src/VBox/Devices/Network/slirp/ip_icmp.c
r63478 r69046 333 333 lport = udp->uh_sport; 334 334 last_socket = udp_last_so; 335 /* fall through */335 RT_FALL_THRU(); 336 336 337 337 case IPPROTO_TCP: -
trunk/src/VBox/Devices/Network/slirp/libalias/alias_ftp.c
r65664 r69046 341 341 else 342 342 state++; 343 /* FALLTHRU */343 RT_FALL_THRU(); 344 344 case 1: 345 345 case 3: -
trunk/src/VBox/Devices/Network/slirp/tcp_subr.c
r68444 r69046 455 455 } 456 456 } 457 /* FALLTHROUGH */457 RT_FALL_THRU(); 458 458 case CTL_ALIAS: 459 459 default:
Note:
See TracChangeset
for help on using the changeset viewer.