search for: rexmtval

Displaying 4 results from an estimated 4 matches for "rexmtval".

Did you mean: retval
2006 Dec 11
0
Add option to TFTP client to ignore ':' in file name
...nnected.\n"); ! printf("Mode: %s Verbose: %s Tracing: %s\n", mode->m_mode, ! verbose ? "on" : "off", trace ? "on" : "off"); printf("Rexmt-interval: %d seconds, Max-timeout: %d seconds\n", rexmtval, maxtimeout); } --- 710,717 ---- printf("Connected to %s.\n", hostname); else printf("Not connected.\n"); ! printf("Mode: %s Verbose: %s Tracing: %s Literal: %s\n", mode->m_mode, ! verbose ? "on&quot...
2006 Dec 11
2
Add option to TFTP client to ignore ':' in file name (re-submit)
...nnected.\n"); ! printf("Mode: %s Verbose: %s Tracing: %s\n", mode->m_mode, ! verbose ? "on" : "off", trace ? "on" : "off"); printf("Rexmt-interval: %d seconds, Max-timeout: %d seconds\n", rexmtval, maxtimeout); } --- 723,730 ---- printf("Connected to %s.\n", hostname); else printf("Not connected.\n"); ! printf("Mode: %s Verbose: %s Tracing: %s Literal: %s\n", mode->m_mode, ! verbose ? "on&quot...
2014 Jul 31
0
[PATCH 1/3] __progname is provided by libc
...T; #define TRIES 6 /* Number of attempts to send each packet */ #define TIMEOUT_LIMIT ((1 << TRIES)-1) -const char *__progname; +const char *tftpd_progname; static int peer; static unsigned long timeout = TIMEOUT; /* Current timeout value */ static unsigned long rexmtval = TIMEOUT; /* Basic timeout value */ @@ -387,9 +387,9 @@ int main(int argc, char **argv) /* basename() is way too much of a pain from a portability standpoint */ p = strrchr(argv[0], '/'); - __progname = (p && p[1]) ? p + 1 : argv[0]; + tftpd_progname = (p &a...
2014 Jul 31
5
[PATCH 0/3] tftp-hpa patches from Debian
From: Ron <ron at debian.org> Hi, I've just taken over maintaining the packages for this in Debian, and we've been carrying a couple of patches for a while now that really should have been forwarded since they're clearly not distro specific. I added a third one to that yesterday to fix another autoconf build 'race' seen when doing parallel builds. Cheers, Ron