summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-05-27regen.Federico G. Schwindt
2001-05-27Netgear FA410TXC; from Loic Tortay <loict@bougon.net>.Federico G. Schwindt
2001-05-27Cleanup of definesConstantine Sapuntzakis
Fix around the logic in the reset code to be more tolerant of weird devices. Pause a long time after reset to allow device to reboot itself
2001-05-27Yup, more tag fixups.Angelos D. Keromytis
2001-05-27More tag fixups (why do I bother with this...)Angelos D. Keromytis
2001-05-27Fixup packet tags (I'm a masochist).Angelos D. Keromytis
2001-05-27Fixup tags.Angelos D. Keromytis
2001-05-27Initialize old mbuf chain head tags.Angelos D. Keromytis
2001-05-27Fixup tags on old mbuf chain head.Angelos D. Keromytis
2001-05-27Fixup old mbuf chain head.Angelos D. Keromytis
2001-05-27Reset pkthdr on old mbuf head.Angelos D. Keromytis
2001-05-27And clear the M_PKTHDR flag.Angelos D. Keromytis
2001-05-27Copy tags to first mbuf.Angelos D. Keromytis
2001-05-27Fix DirExpandCurlyi. Noticed by ho@. Okay miod@.Marc Espie
2001-05-27"If both ... is specified ..." is not proper english.Angelos D. Keromytis
2001-05-27Placeholders for the new socket options.Angelos D. Keromytis
2001-05-27Add some IPsec-related IP-level socket options.Angelos D. Keromytis
2001-05-27Remove ipsp_copy_ident() prototype.Angelos D. Keromytis
2001-05-27ipsp_copy_ident() no longer needed.Angelos D. Keromytis
2001-05-27ipsp_copy_ident() prototype unneeded now.Angelos D. Keromytis
2001-05-27Also copy the authentication material to the new socket.Angelos D. Keromytis
2001-05-27Free IPsec authentication material on PCB tear down.Angelos D. Keromytis
2001-05-27Keep local authentication material on the PCB.Angelos D. Keromytis
2001-05-27Probably a good idea to pass the NULL to the correct function...Angelos D. Keromytis
2001-05-27If we are passed a packet tag, it's an IPSEC_IN_CRYPTO_DONE so convertAngelos D. Keromytis
it to IPSEC_IN_DONE, rather than adding a new one.
2001-05-27Pass a NULL packet tag for now to ipsp_common_input_cb().Angelos D. Keromytis
2001-05-27Change prototype of ipsp_common_input_cb() to also accept a packet tagAngelos D. Keromytis
as the last argument.
2001-05-27Forgot to convert this tag.Angelos D. Keromytis
2001-05-27Update pointers to IPsec-related PCB information when allocating newAngelos D. Keromytis
PCB; store information from the TDB to the PCB, if it's not initialized, so processed can eventually retrieve it.
2001-05-27Remove unnecessary XXX comment.Angelos D. Keromytis
2001-05-27Remove unnecessary comment.Angelos D. Keromytis
2001-05-27Put back the fix for the possible leak and fix another bugArtur 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-27New tags.Angelos D. Keromytis
2001-05-27Use the new IPsec tags.Angelos D. Keromytis
2001-05-27m_tag_first()/m_tag_next()Angelos D. Keromytis
2001-05-27Split IPsec-related tags into 4 (instead of 2) names, forAngelos D. Keromytis
clarity. Also add m_tag_first() and m_tag_next().
2001-05-26Be more precise about console settings for colour framebuffers.Miod Vallat
2001-05-26Missed that one : use the OpenBSDUpgrade macro.Miod Vallat
2001-05-26Check curly braces expansion.Marc Espie
2001-05-26remove code which was obviously not tested. begone, sloppy code monkeysTheo de Raadt
2001-05-26Use MALLOC/FREE to allocate/free PCBs, instead of using MT_PCBAngelos 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-26No such thing as MT_PCB (anymore?) -- just use MALLOC/free to allocateAngelos D. Keromytis
and free PCBs.
2001-05-26Convert to LIST, remove m_tag_append(), add m_tag_init().Angelos D. Keromytis
2001-05-26Use m_tag_init() and M_COPY_HDR().Angelos D. Keromytis
2001-05-26Use 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-26Use m_tag_init() to initialize new mbuf m_pkthdr fields, rather thanAngelos D. Keromytis
having to change it every time.
2001-05-26Fix backpointer.Angelos D. Keromytis
2001-05-26Style.Angelos D. Keromytis
2001-05-26Sync 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-26Make it a bit more obvious what dosetrlimit does. (shrink).Artur Grabowski