/***************************************************************************
- * Copyright (C) 2007-2008 by Øyvind Harboe *
+ * Copyright (C) 2007-2010 by Øyvind Harboe *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
static int
-zylinjtag_Jim_Command_ls(Jim_Interp *interp,
+ioutil_Jim_Command_ls(Jim_Interp *interp,
int argc,
Jim_Obj * const *argv)
{
}
static int
-zylinjtag_Jim_Command_peek(Jim_Interp *interp,
+ioutil_Jim_Command_peek(Jim_Interp *interp,
int argc,
Jim_Obj * const *argv)
{
}
static int
-zylinjtag_Jim_Command_poke(Jim_Interp *interp,
+ioutil_Jim_Command_poke(Jim_Interp *interp,
int argc,
Jim_Obj * const *argv)
{
/* not so pretty code to fish out ip number*/
-static int zylinjtag_Jim_Command_ip(Jim_Interp *interp, int argc,
+static int ioutil_Jim_Command_ip(Jim_Interp *interp, int argc,
Jim_Obj * const *argv)
{
#if !defined(__CYGWIN__)
}
/* not so pretty code to fish out eth0 mac address */
-static int zylinjtag_Jim_Command_mac(Jim_Interp *interp, int argc,
+static int ioutil_Jim_Command_mac(Jim_Interp *interp, int argc,
Jim_Obj * const *argv)
{
},
/*
- * REVISIT shouldn't most, or all, these zylinjtag_*()
- * entries be #ifdef ZY1000? If not, why so they have
- * those names?
- *
* Peek and poke are security holes -- they manipulate
* server-internal addresses.
*/
{
.name = "peek",
.mode = COMMAND_ANY,
- .jim_handler = zylinjtag_Jim_Command_peek,
+ .jim_handler = ioutil_Jim_Command_peek,
.help = "peek at a memory address",
.usage = "address",
},
{
.name = "poke",
.mode = COMMAND_ANY,
- .jim_handler = zylinjtag_Jim_Command_poke,
+ .jim_handler = ioutil_Jim_Command_poke,
.help = "poke at a memory address",
.usage = "address value",
},
{
.name = "ls",
.mode = COMMAND_ANY,
- .jim_handler = zylinjtag_Jim_Command_ls,
+ .jim_handler = ioutil_Jim_Command_ls,
.help = "show a listing of files",
.usage = "dirname",
},
{
.name = "mac",
.mode = COMMAND_ANY,
- .jim_handler = zylinjtag_Jim_Command_mac,
+ .jim_handler = ioutil_Jim_Command_mac,
.help = "show MAC address",
},
{
.name = "ip",
- .jim_handler = zylinjtag_Jim_Command_ip,
+ .jim_handler = ioutil_Jim_Command_ip,
.mode = COMMAND_ANY,
.help = "show IP address",
},