forked from mirrors/tftp-hpa-google
A few more renames; fix <inttypes.h> emulation.
This commit is contained in:
parent
cba23571e2
commit
b46e220d49
4 changed files with 14 additions and 14 deletions
|
@ -41,7 +41,7 @@
|
|||
#ifndef RECVFILE_H
|
||||
#define RECVFILE_H
|
||||
|
||||
void recvfile (int, char *, char *);
|
||||
void sendfile (int, char *, char *);
|
||||
void tftp_recvfile (int, char *, char *);
|
||||
void tftp_sendfile (int, char *, char *);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -385,7 +385,7 @@ put(int argc, char *argv[])
|
|||
printf("putting %s to %s:%s [%s]\n",
|
||||
cp, hostname, targ, mode);
|
||||
peeraddr.sin_port = port;
|
||||
sendfile(fd, targ, mode);
|
||||
tftp_sendfile(fd, targ, mode);
|
||||
return;
|
||||
}
|
||||
/* this assumes the target is a directory */
|
||||
|
@ -403,7 +403,7 @@ put(int argc, char *argv[])
|
|||
printf("putting %s to %s:%s [%s]\n",
|
||||
argv[n], hostname, targ, mode);
|
||||
peeraddr.sin_port = port;
|
||||
sendfile(fd, targ, mode);
|
||||
tftp_sendfile(fd, targ, mode);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -475,7 +475,7 @@ get(int argc, char *argv[])
|
|||
printf("getting from %s:%s to %s [%s]\n",
|
||||
hostname, src, cp, mode);
|
||||
peeraddr.sin_port = port;
|
||||
recvfile(fd, src, mode);
|
||||
tftp_recvfile(fd, src, mode);
|
||||
break;
|
||||
}
|
||||
cp = tail(src); /* new .. jdg */
|
||||
|
@ -488,7 +488,7 @@ get(int argc, char *argv[])
|
|||
printf("getting from %s:%s to %s [%s]\n",
|
||||
hostname, src, cp, mode);
|
||||
peeraddr.sin_port = port;
|
||||
recvfile(fd, src, mode);
|
||||
tftp_recvfile(fd, src, mode);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ static void tpacket(const char *, struct tftphdr *, int);
|
|||
* Send the requested file.
|
||||
*/
|
||||
void
|
||||
sendfile(int fd, char *name, char *mode)
|
||||
tftp_sendfile(int fd, char *name, char *mode)
|
||||
{
|
||||
struct tftphdr *ap; /* data and ack packets */
|
||||
struct tftphdr *dp;
|
||||
|
@ -212,7 +212,7 @@ abort:
|
|||
* Receive a file.
|
||||
*/
|
||||
void
|
||||
recvfile(int fd, char *name, char *mode)
|
||||
tftp_recvfile(int fd, char *name, char *mode)
|
||||
{
|
||||
struct tftphdr *ap;
|
||||
struct tftphdr *dp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue