Deleted Added
full compact
mkpeer.c (160002) mkpeer.c (160423)
1
2/*
3 * mkpeer.c
4 *
5 * Copyright (c) 1996-1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

--- 20 unchanged lines hidden (view full) ---

29 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
1
2/*
3 * mkpeer.c
4 *
5 * Copyright (c) 1996-1999 Whistle Communications, Inc.
6 * All rights reserved.
7 *
8 * Subject to the following obligations and disclaimer of warranty, use and

--- 20 unchanged lines hidden (view full) ---

29 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35 * OF SUCH DAMAGE.
36 *
37 * $FreeBSD: head/usr.sbin/ngctl/mkpeer.c 160002 2006-06-28 10:38:38Z glebius $
37 * $FreeBSD: head/usr.sbin/ngctl/mkpeer.c 160423 2006-07-17 08:35:47Z stefanf $
38 */
39
40#include <err.h>
41#include <netgraph.h>
42#include <stdio.h>
43
44#include "ngctl.h"
45
46static int MkPeerCmd(int ac, char **av);
47
48const struct ngcmd mkpeer_cmd = {
49 MkPeerCmd,
50 "mkpeer [path] <type> <hook> <peerhook>",
51 "Create and connect a new node to the node at \"path\"",
52 "The mkpeer command atomically creates a new node of type \"type\""
53 " and connects it to the node at \"path\". The hooks used for the"
54 " connection are \"hook\" on the original node and \"peerhook\""
55 " on the new node."
56 " If \"path\" is omitted then \".\" is assumed.",
38 */
39
40#include <err.h>
41#include <netgraph.h>
42#include <stdio.h>
43
44#include "ngctl.h"
45
46static int MkPeerCmd(int ac, char **av);
47
48const struct ngcmd mkpeer_cmd = {
49 MkPeerCmd,
50 "mkpeer [path] <type> <hook> <peerhook>",
51 "Create and connect a new node to the node at \"path\"",
52 "The mkpeer command atomically creates a new node of type \"type\""
53 " and connects it to the node at \"path\". The hooks used for the"
54 " connection are \"hook\" on the original node and \"peerhook\""
55 " on the new node."
56 " If \"path\" is omitted then \".\" is assumed.",
57 {}
57 { NULL }
58};
59
60static int
61MkPeerCmd(int ac, char **av)
62{
63 struct ngm_mkpeer mkp;
64 const char *path = ".";
65

--- 25 unchanged lines hidden ---
58};
59
60static int
61MkPeerCmd(int ac, char **av)
62{
63 struct ngm_mkpeer mkp;
64 const char *path = ".";
65

--- 25 unchanged lines hidden ---