summaryrefslogtreecommitdiffstats
path: root/lib/libnetgraph
Commit message (Collapse)AuthorAgeFilesLines
* make sure that rbuf is aligned by making a union w/ the structure wejmg2014-01-071-4/+7
| | | | | | | | need to access... access the struct through the union too... PR: 185165 Submitted by: Guy Yur MFC after: 1 week
* Fix some misinformation in netgraph manual pages.glebius2013-11-281-2/+2
| | | | Submitted by: Dmitry Luhtionov <dmitryluhtionov gmail.com>
* Remove ng_fec(4).glebius2013-10-281-2/+0
|
* Fix for quite a special case when userland emulates a netgraph node, andglebius2013-03-111-1/+1
| | | | | | | | userland can reply to a message with NGM_HASREPLY bit set. In this case we should not wait for a response to a responce. PR: 176771 Submitted by: Keith Reynolds <keith.reynolds tidalscale.com>
* Fix socket calls on error post-r243965.kevlo2012-12-211-2/+2
| | | | Submitted by: Garrett Cooper
* bring the NGM_IPFW_COOKIE back into ng_ipfw.h, libnetgraph expectsluigi2009-12-281-2/+0
| | | | | to find it there. Unfortunately this reintroduces the dependency on ip_fw_pfil.c
* this file is also affected by the ipfw changesluigi2009-12-281-0/+2
|
* Bump the version of all non-symbol-versioned shared libraries inkensmith2009-07-191-1/+1
| | | | | | | | preparation for 8.0-RELEASE. Add the previous version of those libraries to ObsoleteFiles.inc and bump __FreeBSD_Version. Reviewed by: kib Approved by: re (rwatson)
* Bump library versions in preparation for 7.0.deischen2007-05-211-1/+1
| | | | Ok'd by: kan
* Replace select() by poll() to avoid problems with bigmav2007-05-142-6/+7
| | | | | | descriptor number. Approved by: glebius (mentor)
* Include sys/socket.h to know about sa_family_t.glebius2006-10-172-0/+2
|
* In the splnet(9) times netgraph(4) was synchronous and if a messageglebius2006-01-121-0/+16
| | | | | | | | | | | | | | | | | | had been replied, the reply was always delivered to the originator synchronously. With introduction of netgraph item callbacks and a wait channel with mutex in ng_socket(4), we have fixed the problem with ngctl(8) returning earlier than the command has been proceeded by target node. But still ngctl(8) can return prior to the reply has arrived to its node. To fix this: - Introduce a new flag for netgraph(4) messages - NGM_HASREPLY. This flag is or'ed with message like NGM_READONLY. - In netgraph userland library if we have sent a message with NGM_HASREPLY flag, then select(2) until reply comes. - Mark appropriate generic commands with NGM_HASREPLY flag, gathering them into one enum {}. Bump generic cookie.
* Recognize all current standard node types.ru2005-10-251-4/+42
|
* Bump the shared library version number of all libraries that have notkensmith2005-07-221-1/+1
| | | | | | | been bumped since RELENG_5. Reviewed by: ru Approved by: re (not needed for commit check but in principle...)
* Make this compile with GCC4 by fixing a few signedness related warnings.mux2005-04-263-6/+7
| | | | Reviewed by: md5(1)
* When we have converted an ASCII message to binary, set its version inglebius2005-02-041-0/+1
| | | | | | the header. Otherwise we will send a message with zero version. MFC after: 3 days
* Prefer C99's __func__ over GCC's __FUNCTION__.stefanf2004-09-221-1/+1
|
* Yes, NgRecvAsciiMsg has the same results as NgRecvAsciiMsg, but it'sjmallett2004-07-041-1/+1
| | | | | much more apt to note that it has the same result as NgRecvMsg. Make the manual page less circular in its reference to this fact.
* Mechanically kill hard sentence breaks.ru2004-07-021-1/+1
|
* Increment WARNS.ru2004-01-281-1/+1
|
* - Added three new interfaces, NgAllocRecvMsg(), NgAllocRecvAsciiMsg(),ru2004-01-275-9/+109
| | | | | | | | | | | and NgAllocRecvData(), that dynamically allocate buffer for a binary message, an ascii message, and a data packet, respectively. The size of the allocated buffer is equal to the socket's receive buffer size to guarantee that a message or a data packet is not truncated. - Get rid of the static size buffer in NgSendAsciiMsg(). OK'ed by: archie, julian
* mdoc(7) cleanup.ru2004-01-271-39/+72
|
* Fixed memory leak in NgSendAsciiMsg().ru2004-01-271-1/+4
|
* Use the new defines that include the trailing '\0' in the code.harti2003-11-144-21/+27
| | | | | | | Replace occurences of the magic constant 2 with an offsetof macro call that computes the size of the leading members of the sockaddr. Use strlcpy instead of sprintf where appropriate. Document the new changes in the man page.
* The .Fn functioncharnier2003-06-081-18/+33
|
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-011-1/+1
| | | | especially in troff files.
* english(4) police.schweikh2002-12-271-1/+1
|
* Zap now-unused SHLIB_MINORpeter2002-09-281-1/+0
|
* Fix bugs in NgSendMsg() and NgSendAsciiMsg() where the wrong tokenarchie2001-10-251-2/+2
| | | | | | | value could be returned when the debug level was non-zero. Submitted by: Harti Brandt <brandt@fokus.gmd.de> MFC after: 5 days
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-011-1/+1
|
* Add __FBSDID()s to libnetgraphdillon2001-09-303-6/+9
|
* mdoc(7) police: markup nits.ru2001-08-271-1/+2
|
* Rename the DIAGNOSTICS section to RETURN VALUES and describe thebrian2001-08-241-4/+10
| | | | | | | | return values a little more. Specifically, mention that a return of 0 from NgRecvData() and NgRecvMsg() means the socket has been closed. Suggested by: jkh
* Explain what the return value from NgRecvMsg() and NgRecvData() means,brian2001-08-241-0/+6
| | | | specifically that 0 means the socket has been closed.
* Mark some functions as __printflike() and/or taking const char * argumentskris2001-08-201-2/+2
| | | | | | instead of char *. MFC after: 2 weeks
* Remove whitespace at EOL.dd2001-07-151-2/+2
|
* Set WARNS=2 on libraries that compile cleanly with it.dd2001-07-151-2/+1
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).ru2001-07-061-3/+3
|
* Correct cross-references:sobomax2001-06-051-2/+2
| | | | | | | | | | | | ng_bpf.8 --> ng_bpf.4 ng_ether.8 --> ng_ether.4 ng_iface.8 --> ng_iface.4 ng_pppoe.8 --> ng_pppoe.4 ng_socket.8 --> ng_socket.4 ng_tty.8 --> ng_tty.4 ng_{type}.4 --> /dev/null MFC after: 1 week
* MAN[1-9] -> MAN.ru2001-03-271-1/+1
|
* mdoc(7) police: removed history info from the .Os FreeBSD call.ru2000-12-141-1/+1
|
* - Make sure the message token returned by NgSendMsg() is non-negativearchie2000-06-213-4/+28
| | | | | | - Have NgSendAsciiMsg() return the same token as NgSendMsg() - Document that NgSendMsg() and NgSendAsciiMsg() return the token - Add MLINKS for the functions defined in netgraph(3)
* Fix buffer overflow bug in NgSendAsciiMsg().archie2000-06-021-1/+1
|
* Move netgraph node type man pages from section 8 to section 4.archie2000-05-041-3/+3
|
* Fix a bug handling the debug level when displaying control messagesarchie2000-04-281-9/+15
| | | | in their ASCII forms at debug levels >= 3.
* Introduce .Lb macro to netgraph library manpagephantom2000-04-221-0/+2
|
* Have NgMkSockNode() load the socket node type KLD if it's notarchie2000-01-283-2/+24
| | | | already loaded (indicated by EPROTONOSUPPORT from socket(2)).
* Replace beforeinstall target with new variables used by .mk system.rgrimes2000-01-141-4/+1
| | | | Reviewed by: marcel, and make world
* Remove -g compiler flag.marcel2000-01-031-1/+1
|
OpenPOWER on IntegriCloud