summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1996-07-30Cleanup of abi call and endian stuff. Also fixed some bugs. (AENT).Per Fogelstrom
1996-07-30Cleanup, endian and abi stuff fixies. Some stuff added for MIPS Magnum.Per Fogelstrom
(PICA and Magnum uses very similar core chipsets).
1996-07-30Cleanup of endian and abi call stuff.Per Fogelstrom
1996-07-30import of texinfo 3.7Niklas Hallqvist
1996-07-30bzzt, need finet for outgoing as wellTheo de Raadt
1996-07-30errno restore was reversed.Jason Downs
1996-07-30fix usage messageTheo de Raadt
1996-07-30regarding freebsd pr#1351 & pr#1377 re: fastcopy(); kill "wrong gid butTheo de Raadt
group-readable" window; do not setuid/setgid if fchown() fails.
1996-07-30patch for HP scanjet 4p; netbsd pr#2663; kstailey@dol-esa.govTheo de Raadt
1996-07-30if (beer-tonight) test-before-commit();Theo de Raadt
1996-07-30only reset port-range if modified initially; if needed call getsocknameTheo de Raadt
1996-07-30Update ECOFF nlist from NetBSDNiklas Hallqvist
1996-07-30ARGH! CVS was fooling me saying these files existed in NetBSD, they ARE NOT!Niklas Hallqvist
1996-07-30Oops, somehow these files had got removed. Resurrect and add OpenBSD tagsNiklas Hallqvist
1996-07-30Sync with NetBSD + Add OpenBSD tagsNiklas Hallqvist
1996-07-30*** empty log message ***Jason Downs
1996-07-30closelog() before exec.Jason Downs
1996-07-29udp spam on 6667Theo de Raadt
1996-07-29Add OpenBSD tags. Adapt to OpenBSD *_intr_establish calling conventionNiklas Hallqvist
1996-07-29Remove random() prototype, as it's not needed. Besides it was wrong for the ↵Niklas Hallqvist
alpha :-)
1996-07-29Comment out all obscure networking support; XNS, in particular, is veryJason Downs
busted and crashes people's machines when using ppp.
1996-07-29Fixed a bug causing a CPU loop if dist'ing a file whose parentTodd C. Miller
dir doesn't exist on the target machine.
1996-07-29Bring forward alpha configuration files to 0722. Add OpenBSDNiklas Hallqvist
tags. s/netbsd/bsd/. Add ATAPI and dummy PCMCIA defines.
1996-07-29Now have a common message.c instead of two copies.Todd C. Miller
1996-07-29Only need one copy of message.c so use ../rdist/message.cTodd C. Miller
1996-07-29Added some missing rdist 6.1.3 changes.Todd C. Miller
1996-07-29comment on ptrace & P_SUGIDTheo de Raadt
1996-07-29check callit() stuff like portmap5 does (ugh)Theo de Raadt
1996-07-29fix a few typos in error messages; from freebsdTheo de Raadt
1996-07-29careful of bad addr/port in dgram servicesTheo de Raadt
1996-07-29proto bindresvport() hereTheo de Raadt
1996-07-29-Wall clean; careful buffer usageTheo de Raadt
1996-07-29Fix stupid logic error in bind().Jason Downs
1996-07-29Zero out the port for RPC services; let bind() find one.Jason Downs
1996-07-29Reset port range if bind() fails.Jason Downs
1996-07-29Make TCP ISS increment by random amountsThorsten Lockert
1996-07-29ensure bindresvport() is told to find a portTheo de Raadt
1996-07-29Use new bind() kernel semantics.Jason Downs
1996-07-29no cy* quite yet..Theo de Raadt
1996-07-29grrTheo de Raadt
1996-07-29cy needs-count (for now)Theo de Raadt
1996-07-29rresvport() in terms of bind() & bindresvport()Theo de Raadt
1996-07-29Remove some FreeBSD cruft.Jason Downs
1996-07-29Make 600, instead of 512, the lower limit for reserved ports.Jason Downs
1996-07-29links for supfilesrv/supscanTheo de Raadt
1996-07-29Fix a small bug and change the logic of the bind() port choosing:Jason Downs
Use a random starting point the first time through the loop.
1996-07-29from port 20, do not leak an fdTheo de Raadt
1996-07-29Add -h, causing passive mode connections to request the high port range.Jason Downs
Also a few other changes.
1996-07-29ftpd -UlTheo de Raadt
1996-07-29From FreeBSD (with slightly different sysctl names):Jason Downs
"... Allow the user to nominate one of three ranges of port numbers as candidates for selecting a local address to replace a zero port number. The ranges are selected via a setsockopt(s, IPPROTO_IP, IP_PORTRANGE, &arg) call. The three ranges are: default, high (to bypass firewalls) and low (to get a port below 1024). The default and high port ranges are sysctl settable under sysctl net.inet.ip.portrange.* [net.inet.ip.portfirst, net.inet.ip.portlast, net.inet.ip.porthifirst, and net.inet.ip.porthilast currently in OpenBSD.] This code also fixes a potential deadlock if the system accidently ran out of local port addresses. It'd drop into an infinite while loop. The secure port selection (for root) should reduce overheads and increase reliability of rlogin/rlogind/rsh/rshd if they are modified to take advantage of it."