sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Fix some modules to export more used symbolsand remove non-present symbols that are now reported by kmod_syms.awk.Reviewed by: emasteSponsored by: The FreeBSD FoundationMFC after: 1 weekDiffer
Fix some modules to export more used symbolsand remove non-present symbols that are now reported by kmod_syms.awk.Reviewed by: emasteSponsored by: The FreeBSD FoundationMFC after: 1 weekDifferential revision: https://reviews.freebsd.org/D32878
show more ...
libalias: retire cuseeme supportThe CU-SeeMe videoconferencing client and associated protocol is at thispoint a historical artifact; there is no need to retain support for thisprotocol today.Re
libalias: retire cuseeme supportThe CU-SeeMe videoconferencing client and associated protocol is at thispoint a historical artifact; there is no need to retain support for thisprotocol today.Reviewed by: philip, markj, allanjudeRelnotes: YesSponsored by: The FreeBSD FoundationDifferential Revision: https://reviews.freebsd.org/D24790
sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with: `cd sys/modules; make ALL_MODULES=` on amd64MFC after: 1 monthSponsored by: Dell EMC Isilon
Add SCTP NAT support.Submitted by: CAIA (http://caia.swin.edu.au)
The old PacketAlias* API is not exported whenlibalias run in kernel land.
- Removed a copyright from makefile.- Added ${.CURDIR} to .include "...".- Whitespace fixes.OK'ed by: piso
Summer of Code 2005: improve libalias - part 1 of 2With the first part of my previous Summer of Code work, we get:-made libalias modular: -support for 'particular' protocols (like ftp/irc/etcet
Summer of Code 2005: improve libalias - part 1 of 2With the first part of my previous Summer of Code work, we get:-made libalias modular: -support for 'particular' protocols (like ftp/irc/etcetc) is no more hardcoded inside libalias, but it's available through external modules loadable at runtime -modules are available both in kernel (/boot/kernel/alias_*.ko) and user land (/lib/libalias_*) -protocols/applications modularized are: cuseeme, ftp, irc, nbt, pptp, skinny and smedia-added logging support for kernel side-cleanupAfter a buildworld, do a 'mergemaster -i' to install the file libalias.confin /etc or manually copy it.During startup (and after every HUP signal) user land applications runningthe new libalias will try to read a file in /etc called libalias.conf:that file contains the list of modules to load.User land applications affected by this commit are ppp and natd:if libalias.conf is present in /etc you won't notice any difference.The only kernel land bit affected by this commit is ng_nat:if you are using ng_nat, and it doesn't correctly handleftp/irc/etcetc sessions anymore, remember to kldloadthe correspondent module (i.e. kldload alias_ftp).General information and details about the inner working are availablein the libalias man page under the section 'MODULAR ARCHITECTURE(AND ipfw(4) SUPPORT)'.NOTA BENE: this commit affects _ONLY_ libalias, ipfw in-kernel natsupport will be part of the next libalias-related commit.Approved by: glebiusReviewed by: glebius, ru
Don't compile legacy libalias support into kernel.Approved by: re (dwhite)
libalias is now buildable as kernel module