|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
| #
1d386b48 |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
Remove $FreeBSD$: one-line .c pattern
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
|
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0 |
|
| #
7f75bbd0 |
| 10-May-2019 |
Mark Johnston <[email protected]> |
Atomically update the global gMsgId in libnetgraph.
Otherwise concurrently running threads may inadvertently use the same token for different messages.
Preserve the behaviour of disallowing negativ
Atomically update the global gMsgId in libnetgraph.
Otherwise concurrently running threads may inadvertently use the same token for different messages.
Preserve the behaviour of disallowing negative message tokens, but allow a message token value of zero since this simplifies the code a bit and tokens are documented to be non-negative.
PR: 234442 Reported and tested by: eugen MFC after: 1 month Sponsored by: The FreeBSD Foundation
show more ...
|
|
Revision tags: release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0, release/11.0.1, release/11.0.0, release/10.3.0, release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0 |
|
| #
61dbb845 |
| 11-Mar-2013 |
Gleb Smirnoff <[email protected]> |
Fix for quite a special case when userland emulates a netgraph node, and 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:
Fix for quite a special case when userland emulates a netgraph node, and 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>
show more ...
|
|
Revision tags: release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0 |
|
| #
82a35b73 |
| 14-May-2007 |
Alexander Motin <[email protected]> |
Replace select() by poll() to avoid problems with big descriptor number.
Approved by: glebius (mentor)
|
|
Revision tags: release/6.2.0_cvs, release/6.2.0 |
|
| #
bbf889ed |
| 17-Oct-2006 |
Gleb Smirnoff <[email protected]> |
Include sys/socket.h to know about sa_family_t.
|
|
Revision tags: release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0 |
|
| #
2df050ad |
| 12-Jan-2006 |
Gleb Smirnoff <[email protected]> |
In the splnet(9) times netgraph(4) was synchronous and if a message had been replied, the reply was always delivered to the originator synchronously.
With introduction of netgraph item callbacks and
In the splnet(9) times netgraph(4) was synchronous and if a message 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.
show more ...
|
|
Revision tags: release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0 |
|
| #
b9236794 |
| 26-Apr-2005 |
Maxime Henrion <[email protected]> |
Make this compile with GCC4 by fixing a few signedness related warnings.
Reviewed by: md5(1)
|
| #
e551a1c3 |
| 04-Feb-2005 |
Gleb Smirnoff <[email protected]> |
When we have converted an ASCII message to binary, set its version in the header. Otherwise we will send a message with zero version.
MFC after: 3 days
|
|
Revision tags: release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0, release/5.2.1_cvs, release/5.2.1 |
|
| #
d15ff417 |
| 27-Jan-2004 |
Ruslan Ermilov <[email protected]> |
- Added three new interfaces, NgAllocRecvMsg(), NgAllocRecvAsciiMsg(), and NgAllocRecvData(), that dynamically allocate buffer for a binary message, an ascii message, and a data packet, respectiv
- Added three new interfaces, NgAllocRecvMsg(), NgAllocRecvAsciiMsg(), 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
show more ...
|
| #
430b8c1b |
| 27-Jan-2004 |
Ruslan Ermilov <[email protected]> |
Fixed memory leak in NgSendAsciiMsg().
|
|
Revision tags: release/5.2.0_cvs, release/5.2.0 |
|
| #
54e33116 |
| 14-Nov-2003 |
Hartmut Brandt <[email protected]> |
Use the new defines that include the trailing '\0' in the code. Replace occurences of the magic constant 2 with an offsetof macro call that computes the size of the leading members of the sockaddr. U
Use the new defines that include the trailing '\0' in the code. 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.
show more ...
|
|
Revision tags: release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs, release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs, release/4.5.0_cvs, release/4.4.0_cvs |
|
| #
0fb56449 |
| 25-Oct-2001 |
Archie Cobbs <[email protected]> |
Fix bugs in NgSendMsg() and NgSendAsciiMsg() where the wrong token value could be returned when the debug level was non-zero.
Submitted by: Harti Brandt <[email protected]> MFC after: 5 days
|
| #
fd0d00c5 |
| 30-Sep-2001 |
Matthew Dillon <[email protected]> |
Add __FBSDID()s to libnetgraph
|
|
Revision tags: release/4.3.0_cvs, release/4.3.0, release/4.2.0, release/4.1.1_cvs, release/4.1.0, release/3.5.0_cvs |
|
| #
33c22c64 |
| 21-Jun-2000 |
Archie Cobbs <[email protected]> |
- Make sure the message token returned by NgSendMsg() is non-negative - Have NgSendAsciiMsg() return the same token as NgSendMsg() - Document that NgSendMsg() and NgSendAsciiMsg() return the token -
- Make sure the message token returned by NgSendMsg() is non-negative - 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)
show more ...
|
| #
7273f8bc |
| 02-Jun-2000 |
Archie Cobbs <[email protected]> |
Fix buffer overflow bug in NgSendAsciiMsg().
|
|
Revision tags: release/4.0.0_cvs, release/3.4.0_cvs |
|
| #
f8307e12 |
| 30-Nov-1999 |
Archie Cobbs <[email protected]> |
Add two new generic control messages, NGM_ASCII2BINARY and NGM_BINARY2ASCII, which convert control messages to ASCII and back. This allows control messages to be sent and received in ASCII form using
Add two new generic control messages, NGM_ASCII2BINARY and NGM_BINARY2ASCII, which convert control messages to ASCII and back. This allows control messages to be sent and received in ASCII form using ngctl(8), which makes ngctl a lot more useful.
This also allows all the type-specific debugging code in libnetgraph to go away -- instead, we just ask the node itself to do the ASCII translation for us.
Currently, all generic control messages are supported, as well as messages associated with the following node types: async, cisco, ksocket, and ppp.
See /usr/share/examples/netgraph/ngctl for an example of using this.
Also give ngctl(8) the ability to print out incoming data and control messages at any time. Eventually nghook(8) may be subsumed.
Several other misc. bug fixes.
Reviewed by: julian
show more ...
|
| #
4cf49a43 |
| 21-Oct-1999 |
Julian Elischer <[email protected]> |
Whistle's Netgraph link-layer (sometimes more) networking infrastructure. Been in production for 3 years now. Gives Instant Frame relay to if_sr and if_ar drivers, and PPPOE support soon. See: ftp://
Whistle's Netgraph link-layer (sometimes more) networking infrastructure. Been in production for 3 years now. Gives Instant Frame relay to if_sr and if_ar drivers, and PPPOE support soon. See: ftp://ftp.whistle.com/pub/archie/netgraph/index.html for on-line manual pages.
Reviewed by: Doug Rabson ([email protected]) Obtained from: Whistle CVS tree
show more ...
|