Add GPL-2-or-later license headers to the DOS utility source files and document the purpose and local dependencies of each C, header and assembler file. Preserve the original Martin Stover copyright attribution for the historic MARS-NWE utility sources, including files that did not previously carry an explicit header but are part of the original tool set. Add Mario Fetka as the 2026 copyright holder for the current maintenance work, and use Mario-only headers for files without original Martin Stover ownership. Also add a root-level COPYING file containing the GPL-2 license text.
100 lines
2.7 KiB
C
100 lines
2.7 KiB
C
/*
|
|
* mars-nwe-dosutils - NetWare/DOS utility tools.
|
|
*
|
|
* Copyright (C) 2026 Mario Fetka
|
|
* Copyright (C) 1993,1996 Martin Stover, Marburg, Germany
|
|
*
|
|
* 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 the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* Purpose: CAPTURE-compatible DOS utility entry point for printer capture handling.
|
|
* Depends on: net.h, net.c multicall dispatch, netcall.c requester helpers, tools.c shared utility routines.
|
|
*/
|
|
|
|
#include "net.h"
|
|
|
|
static int usage(void)
|
|
{
|
|
fprintf(stderr, "usage:\t%s level\n", funcname);
|
|
fprintf(stderr, "\tlevel=0 .. 99\n" );
|
|
return(-1);
|
|
}
|
|
|
|
static int parse_argv(uint8 *devname, uint8 *queuename,
|
|
int argc, char *argv[], int parsemode)
|
|
{
|
|
int k = 0;
|
|
*devname = '\0';
|
|
*queuename = '\0';
|
|
while (++k < argc) {
|
|
uint8 *p = argv[k];
|
|
if (k == 1) {
|
|
strmaxcpy(devname, p, 20);
|
|
upstr(devname);
|
|
if (!strcmp(devname, "PRN"))
|
|
strcpy(devname, "LPT1");
|
|
} else if (k == 2) {
|
|
strmaxcpy(queuename, p, 20);
|
|
upstr(queuename);
|
|
}
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
static int do_capture(uint8 *drvstr, uint8 *queuestr, int delete)
|
|
{
|
|
int result = redir_device_drive(delete ? -1 : 0x3, drvstr, queuestr);
|
|
return(result);
|
|
}
|
|
|
|
static int show_capture(uint8 *drvstr)
|
|
{
|
|
int result;
|
|
int k =-1;
|
|
uint8 devname[20];
|
|
uint8 remotename[130];
|
|
int devicetyp;
|
|
while ((result = list_redir(++k, &devicetyp, devname, remotename)) > -1){
|
|
if (result > -1 && devicetyp == 0x3) {
|
|
upstr(devname);
|
|
upstr(remotename);
|
|
if (!drvstr || !*drvstr || !strcmp(devname, drvstr))
|
|
fprintf(stdout, "%-10s captured to %s\n", devname, remotename);
|
|
}
|
|
}
|
|
return(result);
|
|
}
|
|
|
|
int func_capture(int argc, char *argv[], int mode)
|
|
{
|
|
uint8 devname [22];
|
|
uint8 queuestr[22];
|
|
if (!parse_argv(devname, queuestr, argc, argv, mode)) {
|
|
int result=0;
|
|
if (*queuestr || mode == 1) {
|
|
result=do_capture(devname, queuestr, mode);
|
|
if (result< 0)
|
|
fprintf(stderr, "capture error:%d, device:%s \n", result, devname);
|
|
}
|
|
if (mode != 1)
|
|
show_capture(devname);
|
|
else if (result > -1)
|
|
fprintf(stdout, "Capture of %s removed\n", devname);
|
|
return(result);
|
|
}
|
|
return(1);
|
|
}
|
|
|