aboutsummaryrefslogtreecommitdiff
path: root/tests/server/tftpd.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-08-22 13:44:37 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-08-22 13:44:37 +0200
commit816b639035dfdcf83c0d569bb7d22b806beacde9 (patch)
treeb6a5234bb438324d7959080cd721a6f837e5f89d /tests/server/tftpd.c
parent8804ffd4faa19a6f6d24f452bfbd826e11a4dc23 (diff)
tftpd: convert 6 global variables into local ones
Diffstat (limited to 'tests/server/tftpd.c')
-rw-r--r--tests/server/tftpd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c
index 10f88a1e0..8ce363939 100644
--- a/tests/server/tftpd.c
+++ b/tests/server/tftpd.c
@@ -200,14 +200,6 @@ static curl_socket_t peer = CURL_SOCKET_BAD;
static int timeout;
static int maxtimeout = 5 * TIMEOUT;
-static unsigned short sendblock; /* block count used by sendtftp() */
-static struct tftphdr *sdp; /* data buffer used by sendtftp() */
-static struct tftphdr *sap; /* ack buffer used by sendtftp() */
-
-static unsigned short recvblock; /* block count used by recvtftp() */
-static struct tftphdr *rdp; /* data buffer used by recvtftp() */
-static struct tftphdr *rap; /* ack buffer used by recvtftp() */
-
#ifdef ENABLE_IPV6
static bool use_ipv6 = FALSE;
#endif
@@ -1148,6 +1140,10 @@ static void sendtftp(struct testcase *test, struct formats *pf)
{
int size;
ssize_t n;
+ unsigned short sendblock; /* block count */
+ struct tftphdr *sdp; /* data buffer */
+ struct tftphdr *sap; /* ack buffer */
+
sendblock = 1;
#if defined(HAVE_ALARM) && defined(SIGALRM)
mysignal(SIGALRM, timer);
@@ -1216,6 +1212,10 @@ static void sendtftp(struct testcase *test, struct formats *pf)
static void recvtftp(struct testcase *test, struct formats *pf)
{
ssize_t n, size;
+ unsigned short recvblock; /* block count */
+ struct tftphdr *rdp; /* data buffer */
+ struct tftphdr *rap; /* ack buffer */
+
recvblock = 0;
#if defined(HAVE_ALARM) && defined(SIGALRM)
mysignal(SIGALRM, timer);