search for: tftp_err_unable_to_resolv

Displaying 2 results from an estimated 2 matches for "tftp_err_unable_to_resolv".

2016 Apr 23
0
RFC: [Patch] libpuload: use previous TFTP OK status definition
...diff --git a/com32/libupload/tftp.h b/com32/libupload/tftp.h index 209d975..27f5fbe 100644 --- a/com32/libupload/tftp.h +++ b/com32/libupload/tftp.h @@ -18,7 +18,7 @@ TFTP_ERR_BAD_OPTS = 8, /**< Option negotiation failed */ /* The following are not defined in RFC, for internal usage only */ TFTP_ERR_UNABLE_TO_RESOLVE = 9, TFTP_ERR_UNABLE_TO_CONNECT = 10, -TFTP_ERR_OK = 11, +TFTP_OK = 11, TFTP_ERR_NO_NETWORK = 12, };
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...d_tftp_write(struct upload_backend *be) tftp.seq = 0; if (be->argv[1]) { - tftp.srv_ip = pxe_dns_resolv(be->argv[1]); + tftp.srv_ip = pxe_dns(be->argv[1]); if (!tftp.srv_ip) { // printf("\nUnable to resolve hostname: %s\n", be->argv[1]); return -TFTP_ERR_UNABLE_TO_RESOLVE; diff --git a/com32/lua/src/vesa.c b/com32/lua/src/vesa.c index 9f28134..06649e1 100644 --- a/com32/lua/src/vesa.c +++ b/com32/lua/src/vesa.c @@ -17,10 +17,15 @@ static int vesa_getmodes(lua_State *L) struct vesa_general_info *gi; struct vesa_mode_info *mi; int nmode = 1; + int rv = -1;...