aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/sys/bind.2
Commit message (Collapse)AuthorAgeFilesLines
* Document EINTEGRITY errors for many system calls.John Baldwin2020-03-301-1/+3
| | | | | | | | | | | | | | | | | | | EINTEGRITY was previously documented as a UFS-specific error for mount(2). This documents EINTEGRITY as a filesystem-independent error that may be reported by the backing store of a filesystem. While here, document EIO as a filesystem-independent error for both mount(2) and posix_fadvise(2). EIO was previously only documented for UFS for mount(2). Reviewed by: mckusick Suggested by: mckusick MFC after: 2 weeks Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D24168 Notes: svn path=/head/; revision=359465
* Renumber copyright clause 4Warner Losh2017-02-281-1/+1
| | | | | | | | | | | | Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point. Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96 Notes: svn path=/head/; revision=314436
* Remove <sys/types.h> from the SYNOPSIS.Kevin Lo2016-08-181-2/+1
| | | | Notes: svn path=/head/; revision=304334
* Document EINVAL as per POSIX.Sergey Kandaurov2014-06-261-1/+5
| | | | | | | | | | | This also follows r124335-r124336, r225827. PR: 191382 MFC after: 1 week Sponsored by: Nginx, Inc. Notes: svn path=/head/; revision=267909
* Document that bind(2) can fail with EAFNOSUPPORT.Kevin Lo2012-12-041-0/+2
| | | | | | | Reviewed by: glebius Notes: svn path=/head/; revision=243858
* Document EINVAL for bind(2).Pawel Jakub Dawidek2009-06-011-0/+3
| | | | | | | | Reviewed by: rwatson Obtained from: SuSv3 Notes: svn path=/head/; revision=193214
* Per Regents of the University of Calfornia letter, remove advertisingWarner Losh2007-01-091-4/+0
| | | | | | | | | clause. # If I've done so improperly on a file, please let me know. Notes: svn path=/head/; revision=165903
* mdoc(7) police: "The .Fa argument.".Ruslan Ermilov2002-12-191-3/+7
| | | | Notes: svn path=/head/; revision=108087
* mdoc(7) police: Tidy up the syscall language.Ruslan Ermilov2002-12-181-4/+4
| | | | | | | | | | | | | Stop calling system calls "function calls". Use "The .Fn system call" a-la "The .Nm utility". When referring to a non-BSD implementation in the HISTORY section, call syscall a function, to be safe. Notes: svn path=/head/; revision=108028
* The .Fn functionGiorgos Keramidas2002-07-151-3/+6
| | | | Notes: svn path=/head/; revision=100137
* s/unavilable/unavailable/Daniel Harris2002-07-071-1/+1
| | | | | | | | | PR: 39446 Submitted by: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at> MFC after: 1 day Notes: svn path=/head/; revision=99538
* - There is no such thing as a socket structure. sockets are integers.John Baldwin2001-11-051-2/+2
| | | | | | | | | | | | | | I'm assuming that the comment was regarding socket address structures, so correct the comment about pre-zero'ing socket structures to recommend pre-zero'ing socket address structures. - Fix some minor grammar nits. - This isn't directly submitted by the PR below but is related to it and was inspired by it. PR: 31704 Notes: svn path=/head/; revision=86087
* Remove the internal implementation details of wrapping syscalls,Ruslan Ermilov2001-10-261-21/+0
| | | | | | | | | which do not match the reality anyway. Approved by: deischen, bde Notes: svn path=/head/; revision=85555
* Add warning about zeroing-out the socket structure before populating it.Matthew Dillon2001-10-131-0/+4
| | | | Notes: svn path=/head/; revision=84888
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-2/+2
| | | | Notes: svn path=/head/; revision=84306
* Use the ``.Rv -std'' mdoc(7) macro in appropriate cases.Yaroslav Tykhiy2001-08-091-4/+1
| | | | | | | Reviewed by: ru Notes: svn path=/head/; revision=81352
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79531
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.Dima Dorfman2001-07-091-1/+0
| | | | Notes: svn path=/head/; revision=79454
* mdoc(7) police: normalize .Nd.Ruslan Ermilov2001-04-181-1/+1
| | | | Notes: svn path=/head/; revision=75670
* Replace .Va, .Ar and .Nm with .Fa or .Va where necessary, examples:Chris Costello2000-06-231-2/+2
| | | | | | | | | ``.Ar errno'' -> ``.Va errno'' ``.Nm ops'' -> ``.Fa ops'' ``.Va fd'' -> ``.Fa fd'' Notes: svn path=/head/; revision=61988
* Use `Er' variable to define first column width in ERRORS section. It wasAlexey Zelkin2000-05-041-1/+1
| | | | | | | initially suggested by mdoc(7) style, but was broken over the years Notes: svn path=/head/; revision=59954
* Introduce ".Lb" macro to libc manpages.Alexey Zelkin2000-04-211-0/+2
| | | | | | | More libraries manpages updates following. Notes: svn path=/head/; revision=59460
* General clean-up of socket.h and associated sources to synchronise upPoul-Henning Kamp1999-11-241-1/+1
| | | | | | | | | | | | | | | with NetBSD and the Single Unix Specification v2. This updates some structures with other, almost equivalent types and effort is under way to get the whole more consistent. Also removes a double definition of INET6 and some other clean-ups. Reviewed by: green, bde, phk Some part obtained from: NetBSD, SUSv2 specification Notes: svn path=/head/; revision=53678
* Document that bind(2) can fail with EAGAIN.Nik Clayton1999-11-011-0/+3
| | | | | | | | | PR: docs/14173 docs/14181 Submitted by: Charles Randall <crandall@matchlogic.com> Submitted by: Kelly Yancey <kbyanc@posi.net> Notes: svn path=/head/; revision=52765
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Remove some 4.3BSDish anacronisims that stated that it was anMike Pritchard1999-08-271-3/+1
| | | | | | | | | | error for a pathname to contain a character with the high-order bit set. Inspired by: joerg's previous commit Notes: svn path=/head/; revision=50466
* Improvement in the description of what this does.Mark Murray1999-06-101-10/+10
| | | | | | | Prompted by (and thanks to): W Richard Stevens Notes: svn path=/head/; revision=47870
* Fixed missing const(s) or #include(s) in synopsis.Bruce Evans1997-04-111-1/+1
| | | | Notes: svn path=/head/; revision=24822
* Sort cross references.Wolfram Schneider1997-01-201-2/+2
| | | | Notes: svn path=/head/; revision=21907
* Remove the EINVAL error from the ERRORS sections thatMike Pritchard1997-01-111-2/+0
| | | | | | | | say is means that a pathname had the high-order bit set, since this is no longer an error. Notes: svn path=/head/; revision=21570
* Update a bunch of man pages to use .Fn insteadMike Pritchard1996-08-221-1/+1
| | | | | | | of .Nm when referencing funciton names. Notes: svn path=/head/; revision=17780
* Reviewed by: julian and (hsu?)Julian Elischer1996-01-221-0/+22
| | | | | | | | | Submitted by: John Birrel(L?) changes for threadsafe operations Notes: svn path=/head/; revision=13545
* BSD 4.4 Lite Lib SourcesRodney W. Grimes1994-05-271-0/+126
Notes: svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=1573