Deleted Added
full compact
ipx_input.c (11819) ipx_input.c (11947)
1/*
2 * Copyright (c) 1995, Mike Mitchell
3 * Copyright (c) 1984, 1985, 1986, 1987, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 300 unchanged lines hidden (view full) ---

309 ipx = &errp->ipx_err_ipx.ipx_dna;
310 type = errp->ipx_err_num;
311 type = ntohs((u_short)type);
312 break;
313 }
314 switch (type) {
315
316 case IPX_ERR_UNREACH_HOST:
1/*
2 * Copyright (c) 1995, Mike Mitchell
3 * Copyright (c) 1984, 1985, 1986, 1987, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 300 unchanged lines hidden (view full) ---

309 ipx = &errp->ipx_err_ipx.ipx_dna;
310 type = errp->ipx_err_num;
311 type = ntohs((u_short)type);
312 break;
313 }
314 switch (type) {
315
316 case IPX_ERR_UNREACH_HOST:
317 ipx_pcbnotify(ipx, (int)ipxctlerrmap[cmd], ipx_abort, (long)0);
317 ipx_pcbnotify(ipx, (int)ipxctlerrmap[cmd], ipx_abort, NULL);
318 break;
319
320 case IPX_ERR_NOSOCK:
321 ipxp = ipx_pcblookup(ipx, errp->ipx_err_ipx.ipx_sna.x_port,
322 IPX_WILDCARD);
323 if(ipxp && ipxdonosocks && ! ipx_nullhost(ipxp->ipxp_faddr))
324 (void) ipx_drop(ipxp, (int)ipxctlerrmap[cmd]);
325 }

--- 198 unchanged lines hidden ---
318 break;
319
320 case IPX_ERR_NOSOCK:
321 ipxp = ipx_pcblookup(ipx, errp->ipx_err_ipx.ipx_sna.x_port,
322 IPX_WILDCARD);
323 if(ipxp && ipxdonosocks && ! ipx_nullhost(ipxp->ipxp_faddr))
324 (void) ipx_drop(ipxp, (int)ipxctlerrmap[cmd]);
325 }

--- 198 unchanged lines hidden ---