/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <fcntl.h>
#include "snoop.h"
extern char *dlc_header;
char *tftperror();
char *show_type();
int
{
case RRQ:
case WRQ:
break;
case ERROR:
break;
}
case RRQ:
(void) sprintf(get_sum_line(),
break;
case WRQ:
(void) sprintf(get_sum_line(),
break;
case DATA:
(void) sprintf(get_sum_line(),
"TFTP Data block %d (%d bytes)%s",
break;
case ACK:
(void) sprintf(get_sum_line(),
"TFTP Ack block %d",
break;
case ERROR:
(void) sprintf(get_sum_line(),
"TFTP Error: %s",
break;
}
}
show_space();
dlc_header, 2),
"Opcode = %d (%s)",
case RRQ:
case WRQ:
(void) sprintf(
"File name = \"%s\"",
name);
(void) sprintf(
"Transfer mode = %s",
mode);
break;
case DATA:
(void) sprintf(
"[ %d bytes of data ]",
break;
case ACK:
break;
case ERROR:
}
}
return (fraglen);
}
char *
show_type(t)
int t;
{
switch (t) {
case RRQ: return ("read request");
case WRQ: return ("write request");
case DATA: return ("data packet");
case ACK: return ("acknowledgement");
case ERROR: return ("error");
}
return ("?");
}
char *
unsigned short code;
{
switch (code) {
case EUNDEF: return ("not defined");
case ENOTFOUND: return ("file not found");
case EACCESS: return ("access violation");
case ENOSPACE: return ("disk full or allocation exceeded");
case EBADOP: return ("illegal TFTP operation");
case EBADID: return ("unknown transfer ID");
case EEXISTS: return ("file already exists");
case ENOUSER: return ("no such user");
}
return (buf);
}