summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ngctl
Commit message (Collapse)AuthorAgeFilesLines
* Merge r277258: plug mutex leak in ngctl(8).glebius2015-01-231-1/+3
|
* Add __unused. Ansi prototypes.charnier2010-12-202-6/+10
|
* Add volatile to sig_atomic_t where it was missing.des2009-06-141-1/+1
| | | | MFC after: 1 week
* Modify the DoParseCommand() to work on (const char *) instead of justmtm2008-06-281-4/+4
| | | | | | | (char *). This is a slightly simplified version of the patch in the PR. It fixes compilitation issues with -O3. PR: misc/124385
* Remove options MK_LIBKSE and DEFAULT_THREAD_LIB now that we no longerru2008-03-291-1/+1
| | | | build libkse. This should fix WITHOUT_LIBTHR builds as a side effect.
* Tweak the handling of "WITHOUT_LIBPTHREAD". Also remove the accidentalobrien2007-10-091-1/+1
| | | | | | | treatment of 'LIBKSE' as an "old style" knob. Submitted by: ru Approved by: re(kensmith)
* Repo copy libpthreads to libkse.obrien2007-10-091-1/+1
| | | | | | This introduces the WITHOUT_LIBKSE nob, and changes WITHOUT_LIBPTHREADS to mean with neither threading libs. Approved by: re(kensmith)
* Always install libpthread.* symlinks if at least one ofru2007-10-011-2/+1
| | | | | | | | | | | | the threading libraries is built. This simplifies the logic in makefiles that need to check if the pthreads support is present. It also fixes a bug where we would build a threading library that we shouldn't have built: for example, building with WITHOUT_LIBTHR and the default value of DEFAULT_THREADING_LIB (libthr) would mistakenly build the libthr library, but not install it. Approved by: re (kensmith)
* The last change is not needed for HEAD.glebius2007-03-301-1/+1
| | | | Explained by: ru
* Do not build the libedit support if NO_LIBPTHREAD is defined.glebius2007-03-281-1/+1
| | | | | PR: bin/104478 Submitted by: Mike Durian <durian shadetreesoftware.com>
* getopt(3) returns -1, not EOF.kevlo2007-02-064-4/+4
|
* Push the detection of threading libs support down to ngctl/Makefileru2006-11-271-0/+7
| | | | | | | as the latter can be built without threading (with the loss of line editing functionality). Pointed by: glebius
* Fix "make checkdpadd".ru2006-11-261-1/+1
|
* Silence GCC4 signed/unsigned pointer mismatch warning.kan2006-09-211-1/+1
|
* - Pass pointer to fd_set in ReadSockets.glebius2006-08-081-8/+9
| | | | | | - style(9) nits. Submitted by: ru
* Add line edit and history support to ngctl(8) via editline(3).glebius2006-08-072-22/+168
| | | | | | | | | | | | | | | | | | Details: - The main thread runs editline(3) functions, that can block. - A separate thread is launched to monitor netgraph sockets. - The access to the descriptors is protected by a mutex. At runtime the monitoring thread owns the mutex. When the main thread reads a command from el_gets() it asks the monitoring thread to release a mutex and sleep until the main thread processes the command. This makes ngctl(8) depend on libedit, and libpthread. Thus, the new functionality isn't compiled in if release is being built with -DRELEASE_CRUNCH. PR: bin/87352 Reviewed by: ru, Nuno Antunes <nuno.antunes gmail.com>
* Don't use empty braces ("{}") to initialise arrays. This is a syntaxstefanf2006-07-176-6/+6
| | | | error in ISO C (both 90 and 99).
* Style: space after "return".glebius2006-06-2814-65/+65
|
* Unnest includes before forthcoming editing.glebius2006-05-2416-20/+95
|
* - Reduce the number of netgraph messages when listingru2005-02-091-11/+35
| | | | | | | | | | nodes from (N + 1) to 1, where N is the number of nodes in the system. - Implement "ls -l" which runs the "show" command for each node. In collaboration with: glebius
* Backout rev. 1.17 per ru@ request: there are net.graph.recvspace andmaxim2005-02-041-4/+2
| | | | net.graph.maxdgram sysctls.
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+1
|
* Increase a socket receive buffer size. This helps 'ngctl list'maxim2004-11-251-2/+4
| | | | | | | | | to deal with a big number of nodes. Submitted by: archie Approved by: archie Reported and tested: Konstantin Timashkov MFC after: 1 month
* Mechanically kill hard sentence breaks.ru2004-07-021-1/+1
|
* Get rid of all (but one in write.c) static size buffers.ru2004-01-276-37/+56
|
* Make this WARNS=3 clean.ru2004-01-2613-19/+28
|
* Add a GraphViz-exporting ngctl(8) "dot" command. You can now creategreen2004-01-095-11/+203
| | | | | | | very useful .dot files of your netgraph(4) to quickly visualize the nodes, hooks and edges. An example of this can be found here: http://people.freebsd.org/~green/sample-netgraph-dot.ps If anyone would like to refine the output further, please do so.
* Use fprintf() instead of errx() when displaying usage string. The program namecharnier2004-01-041-2/+3
| | | | will not be written twice.
* Get rid of the old constants which did not include the trailing NULharti2003-11-123-4/+4
| | | | and use the new constants which do.
* Add missing "of".fenner2002-12-141-1/+1
|
* Usage style sweep: spell "usage" with a small 'u'.des2002-04-221-1/+1
| | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/.
* Add ngctl "write" command.archie2002-01-225-1/+115
| | | | MFC after: 1 week
* mdoc(7) police: utilize the new .Ex macro.ru2001-08-151-3/+1
|
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-6/+7
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Remove GCC'isms in CFLAGS.obrien2001-07-201-1/+0
|
* Remove whitespace at EOL.dd2001-07-151-2/+2
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for usr.sbin/ to 8.ru2001-03-201-1/+0
|
* Unrevert something which shouldn't have been reverted in the previous revert.phk2001-03-171-0/+1
| | | | (Yes, I'm going to bed now to get some much needed sleep...)
* Backout my previous commit, it appearantly doesn't work for asynchronousphk2001-03-173-55/+8
| | | | messages.
* Add -ledit to ngctl.phk2001-03-162-8/+54
| | | | | | | Somebody submitted this long time ago, and it has been sitting in my tree for months because I thought archie would pick it up. Submitted by: (sorry, lost track)
* mdoc(7) police: removed history info from the .Os FreeBSD call.ru2000-12-141-1/+1
|
* mdoc(7) police: use certified section headers wherever possible.ru2000-11-171-1/+1
|
* remove trailing periods from SEE ALSO.ben2000-11-151-1/+1
|
* Fix bug in "read" command.archie2000-10-101-2/+4
| | | | Submitted by: Dave Cornelius <dc@packetdesign.com>
* Remove unused variable.archie2000-07-201-1/+1
| | | | | PR: bin/20052 Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su>
* Yellow hat this way: forgot cvs add.phk2000-07-031-0/+103
|
* Experiemntal ascii based device configuration mechanism.phk2000-07-033-1/+3
| | | | This may or may not survive, decision will be made well before 5.0-R
* When the 'msg' command is used from the command line, check for aarchie2000-06-203-45/+70
| | | | | | synchronous reply, and display it (if any) before exiting. Requested by: phk
OpenPOWER on IntegriCloud