Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-05-27 | Remove ipsp_copy_ident() prototype. | Angelos D. Keromytis | |
2001-05-27 | ipsp_copy_ident() no longer needed. | Angelos D. Keromytis | |
2001-05-27 | ipsp_copy_ident() prototype unneeded now. | Angelos D. Keromytis | |
2001-05-27 | Also copy the authentication material to the new socket. | Angelos D. Keromytis | |
2001-05-27 | Free IPsec authentication material on PCB tear down. | Angelos D. Keromytis | |
2001-05-27 | Keep local authentication material on the PCB. | Angelos D. Keromytis | |
2001-05-27 | Probably a good idea to pass the NULL to the correct function... | Angelos D. Keromytis | |
2001-05-27 | If we are passed a packet tag, it's an IPSEC_IN_CRYPTO_DONE so convert | Angelos D. Keromytis | |
it to IPSEC_IN_DONE, rather than adding a new one. | |||
2001-05-27 | Pass a NULL packet tag for now to ipsp_common_input_cb(). | Angelos D. Keromytis | |
2001-05-27 | Change prototype of ipsp_common_input_cb() to also accept a packet tag | Angelos D. Keromytis | |
as the last argument. | |||
2001-05-27 | Forgot to convert this tag. | Angelos D. Keromytis | |
2001-05-27 | Update pointers to IPsec-related PCB information when allocating new | Angelos D. Keromytis | |
PCB; store information from the TDB to the PCB, if it's not initialized, so processed can eventually retrieve it. | |||
2001-05-27 | Remove unnecessary XXX comment. | Angelos D. Keromytis | |
2001-05-27 | Remove unnecessary comment. | Angelos D. Keromytis | |
2001-05-27 | Put back the fix for the possible leak and fix another bug | Artur Grabowski | |
that the fix uncovered. The tx descriptors were not initialized when allocated. The initialization was done in fxp_init, but the first thing fxp_init does is to call fxp_stop and fxp_stop expects the tx descriptors to be already initialized. How did this ever work? | |||
2001-05-27 | New tags. | Angelos D. Keromytis | |
2001-05-27 | Use the new IPsec tags. | Angelos D. Keromytis | |
2001-05-27 | m_tag_first()/m_tag_next() | Angelos D. Keromytis | |
2001-05-27 | Split IPsec-related tags into 4 (instead of 2) names, for | Angelos D. Keromytis | |
clarity. Also add m_tag_first() and m_tag_next(). | |||
2001-05-26 | remove code which was obviously not tested. begone, sloppy code monkeys | Theo de Raadt | |
2001-05-26 | Use MALLOC/FREE to allocate/free PCBs, instead of using MT_PCB | Angelos D. Keromytis | |
mbuf/clusters. My first commit of this died halfway through, so although it did make it in, there was no message sent to the list. | |||
2001-05-26 | No such thing as MT_PCB (anymore?) -- just use MALLOC/free to allocate | Angelos D. Keromytis | |
and free PCBs. | |||
2001-05-26 | Convert to LIST, remove m_tag_append(), add m_tag_init(). | Angelos D. Keromytis | |
2001-05-26 | Use m_tag_init() and M_COPY_HDR(). | Angelos D. Keromytis | |
2001-05-26 | Use LIST instead of TAILQ (actually, we need a new type --- for now, | Angelos D. Keromytis | |
this'll do), add m_tag_init() prototype, fix COPY_HDR | |||
2001-05-26 | Use m_tag_init() to initialize new mbuf m_pkthdr fields, rather than | Angelos D. Keromytis | |
having to change it every time. | |||
2001-05-26 | Fix backpointer. | Angelos D. Keromytis | |
2001-05-26 | Style. | Angelos D. Keromytis | |
2001-05-26 | Sync in some improvements from FreeBSD + my own improvements. | Artur Grabowski | |
- use pool for allocating pipe structures. - use microtime instead of splhigh and time. - improve locking. - better handling of nonblocking. - various efficiency fixes. | |||
2001-05-26 | Make it a bit more obvious what dosetrlimit does. (shrink). | Artur Grabowski | |
2001-05-26 | indentation. | Artur Grabowski | |
2001-05-26 | Add one more '0' in comment. | Artur Grabowski | |
2001-05-25 | Implement PMAP_MAP_POOLPAGE. | Artur Grabowski | |
2001-05-25 | Initialize tag when duplicating header. | Angelos D. Keromytis | |
2001-05-25 | recover old acecept(2) behavior (no ECONNABORTED) for unix domain socket. | Jun-ichiro itojun Hagino | |
it is to be friendly with postfix daemon-to-daemon communication (not 100% sure if which behavior is correct, specwise). patch similar to netbsd. | |||
2001-05-25 | Add 3 sysctl machdep variables: cpuspeed, machineid, and mmuid. | Todd C. Miller | |
2001-05-25 | sync | Theo de Raadt | |
2001-05-25 | we just *love it* when official people at major vendors send us | Theo de Raadt | |
accurate information about upcoming models of their cards | |||
2001-05-25 | Fix color table initialization for powerpc with wscons. | Dale Rahn | |
Without this fix some systems could come up black on black. | |||
2001-05-25 | Wisecom T210CT; from Daniel Lucq <dlucq@ieee.org>. | Federico G. Schwindt | |
2001-05-25 | regen. | Federico G. Schwindt | |
2001-05-25 | Wisecom T210CT; from Daniel Lucq <dlucq@ieee.org>. | Federico G. Schwindt | |
2001-05-24 | More DIAGNOSTIC checks. | Angelos D. Keromytis | |
2001-05-24 | Move duplication of header (and tags) after assigning the flags, so | Angelos D. Keromytis | |
diagnostic code won't complain about mbuf with no M_PKTHDR flag set being treated as a packet header. Also, remove bogus re-initialization of tags. | |||
2001-05-24 | Sync with NetBSD: | Aaron Campbell | |
- Correct gain register initialization to fix L-R imbalance. - Allow to compile on alpha with DIAGNOSTIC. - Update TODO list. - Some delinting. | |||
2001-05-24 | Catch another weird case in diagnostics. | Angelos D. Keromytis | |
2001-05-24 | If the copied tag head is empty, initialize it properly. This (along | Angelos D. Keromytis | |
with the kern/uipc_mbuf.c commit) should solve the NFS crashes. | |||
2001-05-24 | If the copied tag container is empty, initialize it properly. | Angelos D. Keromytis | |
2001-05-24 | Garbage collect procfs_findtextvp(). | Aaron Campbell | |
2001-05-24 | - fix pr 1548: Cannot set arbitrary atime/mtime on ext2fs volume | jasoni | |
- checked by gluk@ |