Deleted Added
full compact
status.c (52419) status.c (125011)
1
2/*
3 * status.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 * status.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/status.c 52419 1999-10-21 09:06:11Z julian $
37 * $FreeBSD: head/usr.sbin/ngctl/status.c 125011 2004-01-26 10:27:18Z ru $
38 */
39
40#include "ngctl.h"
41
42#define NOSTATUS "<no status>"
43
44static int StatusCmd(int ac, char **av);
45
46const struct ngcmd status_cmd = {
47 StatusCmd,
48 "status <path>",
49 "Get human readable status information from the node at <path>",
38 */
39
40#include "ngctl.h"
41
42#define NOSTATUS "<no status>"
43
44static int StatusCmd(int ac, char **av);
45
46const struct ngcmd status_cmd = {
47 StatusCmd,
48 "status <path>",
49 "Get human readable status information from the node at <path>",
50 NULL
50 NULL,
51 {}
51};
52
53static int
54StatusCmd(int ac, char **av)
55{
56 u_char sbuf[sizeof(struct ng_mesg) + NG_TEXTRESPONSE];
57 struct ng_mesg *const resp = (struct ng_mesg *) sbuf;
58 char *const status = (char *) resp->data;

--- 37 unchanged lines hidden ---
52};
53
54static int
55StatusCmd(int ac, char **av)
56{
57 u_char sbuf[sizeof(struct ng_mesg) + NG_TEXTRESPONSE];
58 struct ng_mesg *const resp = (struct ng_mesg *) sbuf;
59 char *const status = (char *) resp->data;

--- 37 unchanged lines hidden ---