![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/share/emscripten/system/include/libc/arpa/ |
Upload File : |
#ifndef _ARPA_TFTP_H #define _ARPA_TFTP_H #define SEGSIZE 512 #define RRQ 01 #define WRQ 02 #define DATA 03 #define ACK 04 #define ERROR 05 struct tftphdr { short th_opcode; union { unsigned short tu_block; short tu_code; char tu_stuff[1]; } th_u; char th_data[1]; }; #define th_block th_u.tu_block #define th_code th_u.tu_code #define th_stuff th_u.tu_stuff #define th_msg th_data #define EUNDEF 0 #define ENOTFOUND 1 #define EACCESS 2 #define ENOSPACE 3 #define EBADOP 4 #define EBADID 5 #define EEXISTS 6 #define ENOUSER 7 #endif