| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement socket delivery MAC checks for IPX/SPX. | rwatson | 2009-06-20 | 1 | -0/+5 |
* | Rework SPX segment reassembly, which was originally based on our TCP | rwatson | 2009-06-20 | 1 | -1/+1 |
* | Invoke the MAC Framework's mac_socket_create_mbuf() entry point when | rwatson | 2009-06-20 | 1 | -0/+6 |
* | Add missing call to ipx_pcbdetach() during SPX socket tear-down: not | rwatson | 2009-05-25 | 1 | -0/+1 |
* | Eliminate use of dtom() in spx_output() by fixing up tracking of the | rwatson | 2009-05-25 | 1 | -7/+10 |
* | Prefer NULL to 0 for pointer assignments. | rwatson | 2009-05-25 | 1 | -2/+2 |
* | Rather than store a skeleton IPX header in an mbuf hung off the SPX | rwatson | 2009-05-25 | 1 | -10/+13 |
* | Pull SPX reassembly queue init and flush into spx_reass.c. | rwatson | 2009-05-25 | 1 | -11/+3 |
* | Prefer m_nextpkt to m_act when iterating mbuf queues. | rwatson | 2009-05-25 | 1 | -1/+1 |
* | Complete move of SPX reassembly from spx_usrreq.c to spx_reass.c. | rwatson | 2009-05-25 | 1 | -352/+3 |
* | Make the SPX code use its own copies of insque()/remque(). | ed | 2009-04-26 | 1 | -3/+22 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 1 | -4/+4 |
* | Rather than m_free(dtom(si)) in spx_reass(), return (1) which causes the | rwatson | 2008-05-29 | 1 | -6/+3 |
* | Correct minor comment typos, make white space use before block comments | rwatson | 2008-05-29 | 1 | -6/+19 |
* | Avoid unnecessary one use of dtom(9) in spx_input(). | rwatson | 2008-05-26 | 1 | -1/+1 |
* | Factor out UCB and my copyrights from copyrights of Mike Mitchell; | rwatson | 2007-01-08 | 1 | -1/+27 |
* | Change semantics of socket close and detach. Add a new protocol switch | rwatson | 2006-07-21 | 1 | -8/+29 |
* | Chance protocol switch method pru_detach() so that it returns void | rwatson | 2006-04-01 | 1 | -3/+2 |
* | Change protocol switch pru_abort() API so that it returns void rather | rwatson | 2006-04-01 | 1 | -6/+2 |
* | In spx_output(), use M_DONTWAIT instead of M_TRYWAIT, as we hold the | rwatson | 2006-03-27 | 1 | -5/+6 |
* | In spx_input(), change a '&&' to a '||', as the spx trace code is able | rwatson | 2006-03-27 | 1 | -1/+1 |
* | In spx_accept, assert ipxp != NULL, not == NULL. | rwatson | 2006-03-26 | 1 | -1/+1 |
* | In various SPX protocol entry points from the socket layer, check | rwatson | 2006-03-26 | 1 | -7/+53 |
* | Add a new ipxpcb flag, IPXP_SPX, which is set on ipxpcb's to mark them | rwatson | 2006-03-26 | 1 | -9/+14 |
* | Restore original formulation of SPX segment queue draining during SPX | rwatson | 2006-03-26 | 1 | -1/+3 |
* | Rework IPX/SPX socket and pcb reference model: | rwatson | 2006-03-25 | 1 | -68/+100 |
* | Restructure spx_attach() to properly free memory in the event that one | rwatson | 2006-03-25 | 1 | -21/+32 |
* | Don't bother restoring host byte order of mbuf fields when we're just | rwatson | 2006-03-25 | 1 | -3/+0 |
* | In spx_ctloutput(), acquire the ipxp lock around read operations, | rwatson | 2006-03-25 | 1 | -15/+25 |
* | Slight style reformatting of spx_timers() comments; panic if an | rwatson | 2006-03-25 | 1 | -10/+12 |
* | Clean up and style(9) SPX code prior to significant functional changes | rwatson | 2006-03-24 | 1 | -213/+253 |
* | Protect spx_iss using its own mutex, spx_mtx, rather than piggy-backing | rwatson | 2006-03-24 | 1 | -1/+11 |
* | Move definition of spxrexmtthresh to top of file with other global | rwatson | 2006-03-24 | 1 | -2/+1 |
* | Canonicalize, update copyright. | rwatson | 2006-03-24 | 1 | -102/+52 |
* | Move spx_savesi from being a global variable to an automatically allocated | rwatson | 2006-03-23 | 1 | -1/+1 |
* | Admit to ourselves that we don't actually implement pr_ctlinput() for | rwatson | 2006-03-23 | 1 | -23/+1 |
* | In spx_attach() and spx_detach(), there is no need to check whether the | rwatson | 2006-01-14 | 1 | -4/+0 |
* | Retire MT_HEADER mbuf type and change its users to use MT_DATA. | andre | 2005-11-02 | 1 | -3/+3 |
* | Push the assignment of a new or updated so_qlimit from solisten() | rwatson | 2005-10-30 | 1 | -3/+4 |
* | In the current world order, solisten() implements the state transition of | rwatson | 2005-02-21 | 1 | -2/+7 |
* | Use the IPX PCB list mutex and IPX PCB mutexes to lock down the SPX | rwatson | 2005-01-09 | 1 | -38/+108 |
* | Clean up return handling for a number of SPX-related routines that | rwatson | 2005-01-09 | 1 | -22/+29 |
* | /* -> /*- for license, minor formatting changes | imp | 2005-01-07 | 1 | -1/+1 |
* | Acquire the socket buffer receive lock in spx_rcvoob() to permit | rwatson | 2005-01-02 | 1 | -0/+3 |
* | Increase the coverage scope of the receive socket buffer lock in | rwatson | 2005-01-02 | 1 | -10/+9 |
* | Explicitly lock the send socket buffer in spx_reass() to cover the drop | rwatson | 2005-01-02 | 1 | -2/+3 |
* | Use KASSERT() in preference to if()panic(). | rwatson | 2005-01-02 | 1 | -4/+1 |
* | Trim trailing whitespace. | rwatson | 2005-01-02 | 1 | -13/+13 |
* | Improve handling of SPX session timeout, specifically, make sure to | rwatson | 2005-01-02 | 1 | -5/+8 |
* | Compare and assign pointers with NULL in preference to 0. | rwatson | 2005-01-02 | 1 | -2/+2 |