catalog/INDEX010064400000000000000000000013220775723251000132670ustar00rootroot00000000000000distribution layout_version 1.0 data_model_revision 2.40 uuid 727d8ff2-1ba2-11d8-9908-0060b0ebbbda mod_time 1069364552 create_time 1069364552 path_max 255 name_max 100 media sequence_number 1 vendor tag Benny title "bennyvision.com" end product tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE revision 2.0 title "NRPE 2.0" mod_time 1069364552 create_time 1069364552 architecture HP-UX_11.00_700/800 machine_type 9000/[78]* os_name HP-UX os_release ?.11.* os_version ? vendor_tag Benny directory / all_filesets NRPE is_locatable false fileset tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE size 264821 title "NRPE" mod_time 1069364552 create_time 1069364552 state available catalog/dfiles/INDEX010064400000000000000000000003010775723251000145310ustar00rootroot00000000000000distribution layout_version 1.0 data_model_revision 2.40 uuid 727d8ff2-1ba2-11d8-9908-0060b0ebbbda mod_time 1069364552 create_time 1069364552 path_max 255 name_max 100 media sequence_number 1 catalog/dfiles/INFO010064400000000000000000000002120775723251000144160ustar00rootroot00000000000000control_file path INDEX size 193 mode 0444 mtime 1069364552 tag INDEX control_file path INFO size 198 mode 0444 mtime 1069364552 tag INFO catalog/NRPE/pfiles/INDEX010044400000000000000000000005560775723251000153230ustar00rootroot00000000000000vendor tag Benny title "bennyvision.com" end product tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE revision 2.0 title "NRPE 2.0" mod_time 1069364552 create_time 1069364552 architecture HP-UX_11.00_700/800 machine_type 9000/[78]* os_name HP-UX os_release ?.11.* os_version ? vendor_tag Benny directory / all_filesets NRPE is_locatable false catalog/NRPE/pfiles/INFO010044400000000000000000000002120775723251000151740ustar00rootroot00000000000000control_file path INDEX size 366 mode 0444 mtime 1069364552 tag INDEX control_file path INFO size 198 mode 0444 mtime 1069364552 tag INFO catalog/NRPE/NRPE/INDEX010044400000000000000000000002430775723251000145760ustar00rootroot00000000000000fileset tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE size 264821 title "NRPE" mod_time 1069364552 create_time 1069364552 state available catalog/NRPE/NRPE/INFO010044400000000000000000000010040775723251000144560ustar00rootroot00000000000000control_file path INDEX size 163 mode 0444 mtime 1069364552 tag INDEX control_file path INFO size 576 mode 0444 mtime 1069364552 tag INFO file path /opt/nrpe/README type f size 6642 cksum 1138950880 mode 0555 uid 0 gid 0 owner root group root mtime 1069364382 file path /opt/nrpe/bin/check_nrpe type f size 112736 cksum 374361107 mode 0555 uid 0 gid 0 owner root group root mtime 1069364383 file path /opt/nrpe/bin/nrpe type f size 144704 cksum 227858799 mode 0555 uid 0 gid 0 owner root group root mtime 1069364383 NRPE/NRPE/opt/nrpe/README010055500000000000000000000147620775723223600152340ustar00rootroot000037777777777*********** NRPE README *********** Purpose ------- The purpose of this addon is to allow you to execute Nagios plugins on a remote host in as transparent a manner as possible. Contents -------- There are two pieces to this addon: 1) NRPE - This program runs as a background process on the remote host and processes command execution requests from the check_nrpe plugin on the Nagios host. Upon receiving a plugin request from an authorized host, it will execute the command line associated with the command name it received and send the program output and return code back to the check_nrpe plugin 2) check_nrpe - This is a plugin that is run on the Nagios host and is used to contact the NRPE process on remote hosts. The plugin requests that a plugin be executed on the remote host and wait for the NRPE process to execute the plugin and return the result. The plugin then uses the output and return code from the plugin execution on the remote host for its own output and return code. Compiling --------- The code is very basic and may not work on your particular system without some tweaking. I just haven't put a lot of effort into this addond. Most Linux users should be able to compile NRPE and the check_nrpe plugin with the following commands... ./configure make all The binaries will be located in the src/ directory after you run 'make all' and will have to be installed manually somewhere on your system. NOTE: Since the check_nrpe plugin and nrpe daemon run on different machines (the plugin runs on the Nagios host and the daemon runs on the remote host), you will have to compile the nrpe daemon on the target machine. Installing ---------- The check_nrpe plugin should be placed on the Nagios host along with your other plugins. In most cases, this will be in the /usr/local/nagios/libexec directory. The nrpe program and the configuration file (nrpe.cfg) should be placed somewhere on the remote host. Note that you will also have to install some plugins on the remote host if you want to make much use of this addon. Running Under INETD or XINETD ----------------------------- If you plan on running nrpe under inetd or xinetd and making use of TCP wrappers, you need to do the following things: 1) Add a line to your /etc/services file as follows (modify the port number as you see fit) nrpe 5666/tcp # NRPE 2) Add entries for the NRPE daemon to either your inetd or xinetd configuration files. Which one your use will depend on which superserver is installed on your system. Both methods are described below. NOTE: If you run nrpe under inetd or xinetd, the server_port and allowed_hosts variables in the nrpe configuration file are ignored. ***** INETD ***** If your system uses the inetd superserver WITH tcpwrappers, add an entry to /etc/inetd.conf as follows: nrpe stream tcp nowait /usr/sbin/tcpd -c --inetd If your system uses the inetd superserver WITHOUT tcpwrappers, add an entry to /etc/inetd.conf as follows: nrpe stream tcp nowait -c --inetd - Replace with the name of the user that the nrpe server should run as. Example: nagios - Replace with the path to the nrpe binary on your system. Example: /usr/local/nagios/nrpe - Replace with the path to the nrpe config file on your system. Example: /usr/local/nagios/nrpe.cfg ***** XINETD ***** If your system uses xinetd instead of inetd, you'll probably want to create a file called 'nrpe' in your /etc/xinetd.d directory that contains the following entries: # default: on # description: NRPE service nrpe { flags = REUSE socket_type = stream wait = no user = server = server_args = -c --inetd log_on_failure += USERID disable = no only_from = ... } - Replace with the name of the user that the nrpe server should run as. - Replace with the path to the nrpe binary on your system. - Replace with the path to the nrpe config file on your system. - Replace the fields with the IP addresses of hosts which are allowed to connect to the NRPE daemon. This only works if xinetd was compiled with support for tcpwrappers. 3) Restart inetd or xinetd will the following command (pick the on that is appropriate for your system: /etc/rc.d/init.d/inet restart /etc/rc.d/init.d/xinetd restart 4) Add entries to your /etc/hosts.allow and /etc/hosts.deny file to enable TCP wrapper protection for the nrpe service. This is optional, although highly recommended. Configuring Things On The Nagios Host --------------------------------------- Examples for configuring the nrpe daemon are found in the sample nrpe.cfg file included in this distribution. That config file resides on the remote host(s) along with the nrpe daemon. The check_nrpe plugin gets installed on the Nagios host. In order to use the check_nrpe plugin from within Nagios, you'll have to define a few things in the host config file. An example command definition for the check_nrpe plugin would look like this: define command{ command_name check_nrpe command_line /usr/local/nagios/libexec/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ } In any service definitions that use the nrpe plugin/daemon to get their results, you would set the service check command portion of the definition to something like this (sample service definition is simplified for this example): define service{ host_name someremotehost service_description someremoteservice check_command check_nrpe!yourcommand ... etc ... } where "yourcommand" is a name of a command that you define in your nrpe.cfg file on the remote host (see the docs in the sample nrpe.cfg file for more information). Questions? ---------- If you have questions about this addon, or problems getting things working, first try searching the nagios-users mailing list archives. Details on searching the list archives can be found at http://www.nagios.org If all else fails, you can email me and I'll try and respond as soon as I get a chance. -- Ethan Galstad (nagios@nagios.org) NRPE/NRPE/opt/nrpe/bin/check_nrpe010055500000000000000000003341400775723223700171440ustar00rootroot000037777777777@@pL3T pGj(R@@  92453-07B11.30?5C 92453-07B11.16.01> D=@(#)$Revision: 92453-07 linker linker crt0.o B.11.37 030623 $ @9HASH 1.0 LbJ0PLvl8g9z=H0sJVO1F=VXJibl=HH+Zpsc8keCVLXd8CQ7 @9HASH 1.0 u5yfgtGOlrWhoJO61H4Go7F8OANoi6hdLREypVOU3wpmbRoj 92453-07B11.16.01>ޕ TN@(#)HP92453-02A.11.00 HP-UX SYMBOLIC DEBUGGER (END.O ILP32) $Revision: 75.04 $@ `PX"@  LX ItX!J44X \O\X 8]X HhbhX IbX Xb(>(@`>(@<>( @P>(@h>(T@Tt>(&h@h >('x@x>((@>(R@h000x@n!Pl!P (;h(;Y @R? @>@ $PRIVATE$$DLT$$PLT$ $SHLIB_DATA$$TEXT$ $SHLIB_INFO$ $DATA_START$ $MILLICODE$$CODE$$LIT$$UNWIND_START$$UNWIND$MILLICODE$$UNWIND$ $UNWIND_END$$RECOVER_START$$RECOVER$MILLICODE$ $RECOVER$ $RECOVER_END$ $PFA_COUNTER$$PFA_COUNTER_END$$DATA$ $SHORTDATA$$GLOBAL$ $SHORTBSS$$BSS$$DEBUG$$HEADER$$GNTT$$LNTT$$SLT$$VT$$LINES$00$ 08@0D@0 T@0` @0 l @0P 8 0  @0  @0  @    U@  8  @,UX 0 @0 @!  80 P@0 @ D0 @0 (@0 8@0 H]0 \bh0 lb0 b0 @0 @0 @0@0 @0  @0  @0  @0 @0, @ P` lO x@'C   @ A @& O Q ?0< @0P @0d @0t @0@0@0`@0@ O @&C @&c @'c @& $@&@@@00@0$@04@0b04@!0d @0x @0 @0 @ 4(  H( X@& d@' p@'# |@' @' @' @'U& @ P`(? P ) A)O P Q+0@0@0@ , ,  @ U(&( $@.0 |@. 4@.0 @.0 @!0 @0 @0  @0 0 @0 D @(0 P @0 ` @0 t @0 @0 A@/s0 A @6 4QU . @ @(0 @IU .0 @:0 @9  @dU .U .0 Q @=3U 4(/0 @ @@<U X/(0 A d@:0 Q x@FUd8/@0 U @GU H/X L8\ \7h l7x |7 7 7 8 8  8@ 8PU 6U 64 P 0U 6LU 6d 0U6|U 6U 6 (@ 8Y TYUl0;Uxx;Up;U ;U;U@; ` @0 U@=0 A@@U=|U@=U=U0=U =@$;U4h@UD @4UP@LU`@dUp@| 0 @0 @E;UEU`FU8F0 A@HUPHdUH| x @h  @0@0 @0 @0 KUJUJ0@0 @0 U @K0 0@K0D @0\ @0t @0 P@L/0 Q@LC0 @MO0 @0 @M0 @M; Ml0 @M < H T d p |   0 @ 0 @0b0@0@!0(@KK /p /pD;(<l:;: /p< ;4;:x:: /p 0 X/p; 0; 0 0`;; ;P; p;0 0 /p<  0: 4/p;d/p;0 A@/p.0 8@ %0 @990 Q@L@Jmain __text_start ___stack_zero __data_startcrt0.oPA-RISC 2.0 Assembler HP92453-03 UX.11.01.24../mapdld.c /CLO/Components/LINKER/Src/csu/CRT_RELEASE ccom options = -ESlit -DA1.1 -DS1.1 -Oq02,al,ag,cn,Lm,sz,Ic,vo,lc,Mf,Po,es,rs,sp,in,vc,Pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,Lu,lb,uj,dp,Fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! +k -AeHPC HP92453-01 W111107../maptsd.c /CLO/Components/LINKER/Src/csu/CRT_RELEASE ccom options = -ESlit -DA1.1 -DS1.1 -Oq02,al,ag,cn,Lm,sz,Ic,vo,lc,Mf,Po,es,rs,sp,in,vc,Pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,Lu,lb,uj,dp,Fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! +k -Aeset_tpL$0007L$0002L$0004L$0001 __map_dldL$0005__do_thread_initL$0008$real_mcount_ptr_nullerrorC$16writestrlen _crt_errnoitoa__exit S$18DD$itoamemcpyC$43$__map_dld _crt_open _crt_readlseek _crt_mmap _crt_close _crt_syserrorsyserroropenclosereadlwp_setprivatelwp_getprivatemmap_utssys BS$maptsdC$10 S$12DD$itoainvoke_init_fini invoke_fini L$plab_start__set_tp__get_tp$global$$START$$ARGV_environ _fp_status _CPU_REVISION_CPU_KEYBITS_1 _FPU_MODEL_start $$dyncall __tool_init_mcount_real_mcount_ptr_clear_counters _sr4export__d_trap $UNWIND_START $UNWIND_END$RECOVER_START $RECOVER_END __dld_flags __dld_hook __dld_list __SYSTEM_ID _SYSTEM_ID _FPU_REVISIONenviron __d_trap_fptr $PFA_C_START $PFA_C_END ___init_start ___fini_start ___init_len ___fini_len__islwp__cxperf_dld_hook __profil_size __dld_loc __dld_path__ismt_ktepv_tepv__tdsize _thread_init __tls_init__tls_prealloc_dtv_etext_end __init_start __fini_start __init_len __fini_len__errno __tdata_addr __tdata_sztaddr __sys_atexit%check_nrpe.c /tmp_mnt/home/benny/temp/nrpe-2.0/src ccom options = -g -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,cl,mo,xn,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = cc -g -DHAVE_CONFIG_H -lnslB111108C$33M$32 $0000001F $00000020 $00000021 $00000022 $00000023 $00000024 $00000025 $00000026 $00000027 $00000028$L4sd server_port server_name command_namesocket_timeoutquery show_help show_license show_versionuse_sslprocess_argumentsprintfdisplay_licenseexitgenerate_crc32_table alarm_handlersignalalarmmy_tcp_connectbzerorandomize_bufferstrncpycalculate_crc32sendallrecvallstrcmpsnprintfgetoptoptargatoistrdupoptindstrcatstrncat utils.c /tmp_mnt/home/benny/temp/nrpe-2.0/src ccom options = -g -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,cl,mo,xn,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = cc -g -DHAVE_CONFIG_H -lnslBS$utilsS$24$randomize_bufferC$26M$25fopenfgetcfclosetimesrandrand my_connect my_inet_aton gethostbynamegetprotobynamesocketconnecterrno __SB_masks_isdigitisascii _isxdigit_islower_isspace$$mulUstripsendrecvsleep my_strsepstrchrstrpbrkend.c /CLO/Products/XDB/debug ccom options = -g -DA1.0 -DS1.1 -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = /CLO/BUILD_ENV/opt/ansic/bin/cc -DCPLUSPLUS -DDIS2 -DSCREEN_SPEEDUP -DREG_NAMES -DCore8 -DDEBUG_DYNAMLOAD -DDYNSYM -DTEMPLATES -DNESTED_CLASS_30 -DNESTED_CLASSES -DXSW -DCORE -DIMAGE_DEBUG -DEXCEPTION_HANDLING -DSHLIB -DDYNSYM -D_HPUX_SOURCE -DNLS -DKSH -DADOPT -DSYSIIIOS -DSYSVHDRS -DPTRACE_SYNC -D__HP_CURSES -DSPECTRUM -Wp,-H256000 -DPA89 -DTIMEX -g -I../include -I../debug +DA1.0 +DS1.1 DS$endcSD$endc __d_syserror__buffer_bufMax__d_pid __rtc_d_trap sigprocmask sigismember__shldp__shlib_funcptr __d_shl_get __d_plt_call__d_eh_catch_throw__d_eh_catch_catch__d_eh_suspend_ad __d_eh_break__d_eh_notify_callback __d_getpid__eh_callback_fptr_end___d_ldsp__wdb_call_dummymulUUX.11.01.06 (ROSE)$loop$return$shmcand$addtmp$two$endloop$fiftnxdyncallUnoshlibs$$dyncall_external$$dyncall_external_20__tdsizeetextedataend_etext_edata_end __SYSTEM_ID _fp_status __profil_sizeLXt>B>B>>/=Xt>B>>/?Xt>B45 (?5A>zx  (?5B>zx>ޔ8w lXt>ޕXt$6T6TXt$6UK6UKy|4/lz x - pHO;A8v˚vY;'Y;hů8&@XFN 4L'-(KwVL!x!xry 4u RmT!xT/}kthhv!xg6eQ0@֘6u-xhŠ !x/P'6//] / gy ƿkY6-˚v8vhů;An bltD8rP.7D7%7744z#!74444@h@7D7%77+4>#)74444+H8 7D7%77+`4!H6 Ȇ 24744447#0&74k?7+`4?K @ 7K?Y@7?@@ 7K?@ @@@@k?ok? k?(7%k?!74#4y4@04 @HK?!K?!7@4 0@@474@4 r+4?K @@7?4y4@p4@7?7?7@@44y4@ 4+47@J @K>K?K? @O? 44@CW?7_7?7@7 "6/'7?7747?'I'G9 8ࢋ1DN1dN3'2 009%G' Z0N1N3! ' 2  :7`1@1@ 9eG'Z0N1$N;J'J:K 66`9@9@9eG'Z0N1N3! ' 2  U6`1@1@ 9eG'Z0N1$N;J'J:K 6`9@9@9eG' Z0N1N3! ' 2   6s`1@1@ 9eG'Z0N1$N;J'J:K 7`9@9@9eG'Z0N1N3! ' 2  7Z`1@1@ 9eG'X0N1$N1:J'J97!`8G ' J <7=`6?@7?7\7W 7?]P6?7=6t7967Z?7_6s`j 78676@k?ok< k<k<k4`@ 5z4` @G> *(4<47_4+4-I K>)K>A@ 0K>YK>i4ߟ444k?K>945k?5@`4 $(7 Jk?4?4k?44@4$7  k?K>Q_ k?45@4 7(48kQ45k?4@4#h75z@ @k>I +4*k>C>+3 4k>4!k?)46 +k>֓ c>44Ka?k>46Ka?k?1647k>6 Ka?k>5B 4=k>7+`K>k? ֠ 49k>7?X+k?!4 48k>6+`k?7 4"H_k?+`4<Kpk?+`4-k?9+`5k?Q4!4=!xk?Ypk?A(43k<6z4_m47=(4:k<7Z4_%4G=(4<kak?q (K>1k?64"k?4A k? }+`k>4&4 k?y+`4$h07>7>k>444? -7K;KKs> k?Ku=!Ks=) k?  4 "@@@@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4& "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4r "@@@@k?7_@K?Y@7?+4!4! @ <4?@@k?ok? k?( 7%k?!74#4yP4_4 @HK?!K?!7_u4 0@@474_54 r+4?K @@7?4y`4_4@7?7?7_44yp4_4+47_uJ @K>K?K? @O? 44@CW?7_7?7@7 " 60/'7?7747?'I'G9 8ࢋ1DN1dN3'2 009%G' Z0N1N3! ' 2  :7`1@1@ 9eG'Z0N1$N;J'J:K 66`9@9@9eG'Z0N1N3! ' 2  U6`1@1@ 9eG'Z0N1$N;J'J:K 6`9@9@9eG' Z0N1N3! ' 2   6s`1@1@ 9eG'Z0N1$N;J'J:K 7`9@9@9eG'Z0N1N3! ' 2  7Z`1@1@ 9eG'X0N1$N1:J'J97!`8G ' J <7=`6?@7?7\7W 7?]P6?7=6t7967Z?7_6s`j 78676@k?ok? +4?+497 (74 j@X@+7?4:``07_ 8 7_4?K?YK?@O?+47+486 7 K?YK?Y+456 0 `7_4c=K?Yk?7_M4K?Y@7?k?o_4+4=7 (@+476 x@+`43+48+`4#h`(h`7 4hu6wh@h+`446hs  hw!k?4?4k?74_4$+`46k?j!H7_u@Hx !@K?HZ_EHyK>+44k?_UJ ]+`h` 4?ha+`4<Kp+`47+`49k 4x>j44477K>@O?( 4:k?!7Y7Z_}4K>@z@@`@@K?@ @Ku>Ks> k?Ku=Ks= k?KuKs>  k?Ku?AKs?I k?Ku=aKs=i k?k?ok.k.K.K.# -7g/QG/Q? B+H3 Xb *+H4 P +H5 H!rG/Q "# 7#-`7"b 6z#-`7" 6#-`7" 60#-`7" 6+49 #-`7 " 4:+49 #-`7# 7#-`7"b 6z#-`7G/Qҕ +H6 X#* " 4:p#-`7# 7#-`7"b 6z0#-`7" 6P#-`7" 64,D#-`7" 6`4#-`7 " 4:#-`7# 7#-`7"b 6z P#-`7" 6 #-`7" 6#-`7" 6 #-`7 " 4: #-`7# 7 0#-`7"b 6z #-`7" 6 #-`7" 6 0#-`7" 6 #-`7 " 4:p#-`7# 7#-`7+H3 Pb ##X7G/Qҕ B+H6 X *+H! P" +H? H 4#-7#0$(74+H9 x#-7+H: `#-7+H: p+H9 x+`48 #0*`7g/QG/Qt%7/a4#. 77/a4#0( 74g/a4g/e7/u+49 4#.P7c7sk/i7/a4#0%7k/IK/Ik/i4k?+H3 @` :+`H: 7/a7?#,(7k/YK/Y Z" 6#-`7+`H: #.7X44k?+H! @ J+`H: 77y7?+H7 `#. 7k/Y4#-7+`H: #.7K/Y`:"b 6z #-`7P4K/Y :" 6#-`74ZK?46B# 7@K?4#-`74K7k/Ak777y4#0%7k/IK/AK/I Z" 6#-`7+`H: #.74G7y? Z"b 6z0#-`7+`H: #.7`4G7}ҕ Z" 6#-`7+`H: #.74G7g/Qc?77# 7 #.7 *"b 6z0#-`7*" 677#-`74#-7G/Qң4|K.@O/Ku>QKs>Y k?Ku>!Ks>) k?Ku?Ks?  k?Ku>AKs>I k?Ku>Ks> k?Ku=Ks= k?Ku>Ks> k?k?ok.k.k?4k?4k?K.` `4?7/4+48 0# ,87K.K.7/# ,h7k?K? K? RK?6?4? " 4? `@4+h4 X4+h5 H4+h6 PKa?H:# ,7+h< `+H! ` @ 4?:Ka?H:# ,7+h< x+H? x@ X4?Ka?H:# ,7+h< pKa?H:# ,7+h< hRKa?H3k?2+h @4?@G+4: 4+48 P+H4 h +47 `+H7 h# ,87+` K?ARK?6?k?K?K.A"+4: # ,74 6?k?K? @+4: # 7# -(7+4: K.K?t K?# -X7+` K?6k?K?K.^@+H3 p R+H4 X :+H5 H "+H6 P 4?44|K.@O/@ @K?@ @k?7k?9 " 4:+H9 `#-`74#-7K?Y@7?@@7 $4?@k?k?K?4A*K?k?4k?K? @K?4  *K?ҶK?6k?K?tk?K?6?k?K? _m@K?K?+`440 K?6k?K?4^@@7?7k?9k?14?k?k?K?K?1@K?9K? ? tk?K?Ҷ?6K?K? t4 +`440 k?K?4?k?K?K?1_5@K?4? 7@7?Ku=1Ks=9 k?Ku=Ks= k?Ku=Ks= k?Ku?Ks? k?Ku=Ks= k?Ku=QKs=Y k?k?7k>9k>1 "04:0#07P#0'7k?K? JK?#0'07k?K?#0'`7"4#0'7k?K?#0'7k?K?K>1@#0'7k>7>&0"060,!0N#070.q0n9D7>&DK>6`ҶK?K>9?vK?6k?K?K>16_@K>Y@7>k?7k?9k?1k?)K?9K?1K?)+47 #0+7k?K?7K?Y@7?Ku>qKs>y k?Ku?QKs?Y k?Ku>1Ks>9 k?Ku?1Ks?9 k?Ku>Ks> k?k?ok? k>k>k>k>7?a4 #. 74g?aK>g?eK>7?i#!(7 K>#0*7k?K? :"06`K>#-`747?iK?J H9K?K#0+(7K>#0+X7 @k?"b06zK>#-`7H44K>"06#.704K?J4#0+7K>K>H?`2"b06z#-`7h4K>J7?a4 #0+7k?K?a Ka?H64ނ "4܂ B4ʂ b"06 #-`7"06`#-`7R"06#-`7" "04:#-`7444|K>K? @O?Ku=Ks= k?Ku=Ks= k?Ku>Ks> k?Ku>aKs>i k?Ku>Ks> k?k?ok? k?k?k>k>7?qk?K>Btҕc?iKa?H6 :C?i?Ka?H3 4 0 C?i# 877` 4k?Q4k?YC?i4` K>6k>B?c?iC?it4 C?i4 B4 k?YK>6k>Bc?i4k?YC?iz# h7!Ka?H4 :C?iҶKa?H! 6 4 0 C?iҚ# 877 K?YK?Q#0#@C?iҶ6?=k?QK>6tk>BҶc?iK?Y4 !C?iz# h7!Ka?H4 :C?iҶKa?H! 6 40 C?iҚ# 77!K?QԕC?i4%Ka?H? :C?itKa?H5 406C?i# 77 4 e Uk?QK>6k>@?c?iC?iҕ4\ K?7? x4K?6tk?K?QuK>6k>@?c?i_C?iҕ C?i# h7 Ka?H! :C?iKa?H4 40 C?i:# 77 4K?7?q RU6Ҷ6k?aK?a聚!䀊 *  j4RK?Q֟ `4K?q K?Q _k?QK?Q֟ 4K?q K?y  SK?Q tUk?QK?Q46 4K?q K?yִ  VK?  SK?Q tUk?Q@K> K>K?Q ?44|K>K?K?K? @O?k?7k?9K?9# ,7k?K?baK?6?k?K?9K? 4@ rK?9K? ? JK?9K?t Ҷ "K?9K? ? t "K?K?9  *K?7?k?K?~@K?Y@7?Ku>Ks> k?k?7k?9k?1k?)k?K?)Jk?k?K?K?)Ka@K?K?1 K?96K?4#+7k?K?? bK?K? k?K?K? k?K?K?)Jt_-@K?)K?K?<74?7K?Y@7?Ku=Ks= k?Ku=AKs=I k?k?7k>k>k>k>k?qK>Kk?yk?K>K>J#. 77?#0'7K?qK>J5ArK?qK> K>6K?y4#-7k?K? Ka?H6 r7?#0'7K?K? K>`4#-7RK?@bK?qK?6k?qK?yK? k?yK?qK>H?^@K>K?qtK?@ K?K?q67K>@7?Ku=qKs=y k?Ku>Ks> k?k?ok>k>K>H?k?K? 4K>BҶ K>@?` K>BҶc?C?? k?K?BtҕC?5 K?Hk?K?6t6C?ҹ# 7k?*K?K># 7k?K? :K?4?k? K>K?tK>K?4|K>@O?@k?7"060#-`7 "04:#-`7#07P#-`7"b06z#-`7"06p#-`7"06#-`7"06P#-`7 "04:#-`7#07 `#-`7"b06z #-`7"06 @#-`7"06 #-`7"06 P#-`7K?Y@7?@@K?@ @Kuk>k>k>47?Q4#%77?Q4 #%7 BK>K>K>K>K>k?#0)7K>@X @@7?k?7k?9k?1k?)k?!+`H?0K?9 JK?1K?)K?!K?K?k?#0%7k?K?7K?Y@7?@k?7+`H6x#0%77K?Y@7?k?k?k?@@k?ok?9k?1k?)+H6 @4"#*7+H! < "+h 4K?9 Z +H3 ` *K?9K?1K?)#(X7Z+H4 *K?9K?1K?)#(X7 @+H# 4|K?Y@O?@@74k?@7?@ @@  4( "@@@@Ka?4! <4?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? /usr/lib/dld.slcrt0: errno: ERROR couldn't open ERROR reading ERROR bad magic number/system id for ERROR bad hpux aux header for ERROR: mmap failed for dld (text) (bss) (data)? crt0: errno: ERROR: mmap failed for TSD tsd8\7h8\8\8\8\8\8\8\8\88\8\8\8\8\8\8\8\8\8\8\8\8\7x8\8\8\8\8\8\8\8\8\8\8@8\8 8\8\8\8\7h8\8\8\78\8P8\78\8\8\7Incorrect command line arguments supplied NRPE Plugin for Nagios Copyright (c) 1999-2003 Ethan Galstad (nagios@nagios.org) Version: %s Last Modified: %s License: GPL with exemptions (-l for more info) Usage: check_nrpe -H [-p ] [-t ] [-c ] [-a ] Options: = The address of the host running the NRPE daemon [port] = The port on which the daemon is running (default=%d) [timeout] = Number of seconds before connection times out (default=%d) [command] = The name of the command that the remote daemon should run [arglist] = Optional arguments that should be passed to the command. Multiple arguments should be separated by a space. If provided, this must be the last option supplied on the command line. Note: This plugin requires that you have the NRPE daemon running on the remote host. You must also have configured the daemon to associate a specific plugin command with the [command] option you are specifying here. Upon receipt of the [command] argument, the NRPE daemon will run the appropriate plugin command and send the plugin output and return code back to *this* plugin. This allows you to execute plugins on remote hosts and 'fake' the results to make Nagios think the plugin is being run locally. CHECK_NRPE: Error sending query to host. CHECK_NRPE: Error receiving data from daemon. CHECK_NRPE: Received 0 bytes from daemon. Check the remote server logs for error messages. CHECK_NRPE: Receive underflow - only %d bytes received (%d expected). CHECK_NRPE: Response packet had invalid CRC32. CHECK_NRPE: Invalid packet version received from server. CHECK_NRPE: Invalid packet type received from server. CHECK_NRPE: No output returned from daemon. %s !CHECK_NRPE: Socket timeout after %d seconds. @R@/dev/urandomrInvalid host name '%s' Cannot map "%s" to protocol number udpSocket creation failed Connection refused by host Timeout while attempting connection Network is unreachable Connection refused or timed out This program is released under the GPL (see below) with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @X 8 <  % @%% @&@&\&`&|&&&&&&&&''' '<'@'\'`'|''''''''((( (8(<)))(),)H)L++, ,,,,,,,.`.d......./p6699::::;|<=,=0=x=@@E4E8EFFGH`HIIJKKKKKL(L,L<L@MMM0M8MHMLMhMlMMO  % & . . 06 *9 ; $=| @ E F Hd J J @Z@b2.009-08-2003H:c:a:t:p:nhl%s_NRPE_CHECK@jHP92453-02A.11.00 HP-UX SYMBOLIC DEBUGGER (END.O ILP32) $Revision: 75.04 $ "tcp@r@hJJ..@4&(;F;/XHdF@;;;.6/(E64=6d6@d=|=@L&@|6|6.H|6L;/=/@=%9J@@@00@;?4</p6`[/6 69699:9:'::,: :^:;|L:;t<=,< =$=0=x=D=l=@>@!@E4@EVE8ECEDEyFFOF(FGH`qG(HTHIHIIJIJ6KK%K(KRKK&KKoKL(&5LLL,L<'L8L8L@M'LTMMM0(5M$M,;/p:&:J5KM0Π/p::JB KM0B  n#     (a)0I +!B"n#$%& '+(D)a*z+,-M.f/H0]1253M4c556789:Q [`C;/p /p6 ? g؀@l A<@q @~ @@ @ @ @ @ E< n#a)0I+Bn+DzMfH]5c5Q 6 69  g؀l ` @@@ @ @    n  # a0I+n+Dz !"M#f$H%]&'c()*+Q ,9 9: - 02 34n56#789:a;0<=>?I@AB+CnDEFzGHIMJfKHL]MNcOPQRS T UVnWXYZ#[\]^_`a(bacd)ef0ghijklmInopqrs+tBunvwxy z+{D|a}z~MfH]5Mc5`     @"Q ,: ::@A @E @ @J *' n#a)0I+Bn+DzMfH]5c5Q Ld: :;|\  ܀ca@A @h @r πfр^ n#a0I+n+DzMfH]cQ < <=,\  ܀2 @@ @  n#  a 0  I+nzMfH]c !Q "=0 =0=x &Ԁ  ܀ʀ#@ &( )*n+,#-./a001234I567+8n9:;M<f=H>]?@cABCQ D= =@ Ѐ &Ԁ ܀E@ L @  @Ā@ fh ijnkl#mnoap0qrsItuv+wnxyzM{f|H}]~cQ (@ @E4 +؀$ 0܀'%@ @3 @8 @` 3 @:5 @@Ȁ9 *! n#I+nMfH]cQ CZE8 E8E ܀Y@ @I ݀\߀V n#I+nfHcQ OF FF WԀ| [؀}_ @a @g @8 y #     InfHcQ qG GH`y  WԀ [؀_ @a @g @8 @Ġ@Ƞ 02 34#56789I:;<n=>f?H@AcBC DQ EHHI ؀ ܀ӀF@@ĀK@ R Y[ \]#^_`abIcdenfgfhHijcklmQ nI IJo ~ #InfHc   @ !1"!1#@!1##$X$$X$%$%Z!1"!1#@!1##$$X$!1"!1#$$X$Q%AK KK% % 9% ;% =% ?@% C€6!1"!1#$$X$Q&_K KK& & U& W& Y&! [&% ]@&1 рaӀR!1"!1$$X$Q&5K KL( ro!1"!1$$&BQ'L, L,L<' ' 'ܠ= !1"!1$$&BQ'L@ L@M( ( 'ܠ=   !1"!1$&BQ(5M MM0@ !#$!1%$&&B'() =EN V _@g@py          # -7AINY `h `  ޠ   ` @ @@`   `   ` @@` @    Ġ ` @ @ @   `?     8x@p$H`&O@# (V " *\ ,.b0@ 33  68@:  =?@àA . E  "I 8G JL DNKOT @ R Q ` V cXtU Z`T \@P ^ ` bdѠf  i k m o` q"@ s* u1 wy 8{; C ~@JS@@\@h s |     ʠ  C @S@@\@  @   @H  Q @Z}@       ` @       @@@`"          @ ^  n u @  J@ S  ^ `e `z@  @``   D ``P @   !#%'` ) +-/'1R@@Z@@3b@@@5j@@7r@@9z@@;@@@=@@?@@A@@C@@@E@@G@@I@@K@@@M@@O@@Q@@S@@@U@@W@@Y@@[@@@] @@_@@a@@c@@@e%@@g,@@i3@@k:@@@mA@@oqHsWuf q w| y {` }@       ` @        !  ,  7  B`  M@  X  c  n  y      `  @              `  @        )  4  ?  J`  T@  ^  h  r  |      `  @          `  @      ' 6` @ E  Q  ]@ j@ r@ z@ @@  @  @  @ @@ @ @ @ @@ @ @ @ @@! @# @% @' @@)  @+ @-  @/  @@1 # @3 0@5 =@7 J@@9 W@; _@= g@? m@@A u@C }@E @G @@I @K @M @O @@Q @S @U @W @@Y @[ @] @_ @@a @c @e @g @@i @k @m @o '@@q .@s 5@u <@w B@@y I@{} U ]` @ `   E  Q  ]@ g  r  }        `  @          `  @   ) 3 = G Q ` [ @ e o y     `  @        `  @   ' 2 = H S ` ^ @ i y     ` @         '`  2@  = H S \ e p {` @    ! # % ' )` +@ -  / 1 3  5 7  9+` ;6@ =A  ?L AW Cb Em Gx I` K@ M  O Q S U W Y` [@ ]  _ a c  e g! i+` k5@ m?  oI qS s] ug wp yy` {@ } I@   j`  r@  z            `  @              `  @              #`  0@  =  J  W  _  g  m  u`  }@              `  @              `  @           '  .`  5@  <  B Ǡv `      $!!.# ;@  & g% (*`C,K.S$vL3 ^ /`i 254 79;` > % =% B% D$@F0$HJ&3@ O @ R T (Q UW    2Z7Y \^@A`K  U  gd eg@`i@ l i@ r ozn qs`u  x z |` ~@   `    ph`+@ 4 ? @JX@$$^@%@fo((u@N&^@*{( =        Ơ       ` @    @%` +@ 1  7 =       \@ f  o x    ` @     `    \ f` @         W  _  "@f $` ` '  )` + - / 1` 3P 5@ 70 9  ;! =+ ?5  A?  CF  EQ  GX Ib Km` Mw@ O Q S U W Y [p ]` _P a@ c  e g i@ kX    o p r@ t  v   y` {@ x }     4 >  E      { ` @        ` @    ֠     ` @        @    `    '@ 0 :  `A     p` w@ ~    `  @ 0     @Ϡ       `  @    ' 1 x  `  P @       `ՠ  0@  0@  0 @ܠ "0@ 0&@! ` @ )0)@( +0/@ 09@ 0F@ 0S@  0@ 70@ 0@ ` @ >@ @@ B D F H J 0@ M`  P0@ R0@ 0@  ! (=EN V  0  : _@g@p by c   E R `  l  y        b b! c! c!! _!) c!X  ^!^ _!f c  ]  ]!n ^!w b ! _! c! ! ^! b ! _!  c! !ڠ ^! b  ^! ^ ^ ^! ^  ] ]   _! ^"# ^ - 7 ^A I ^N _" _" cY " "&`h "- "4 "9"@"F"M _"T"Z"a ^"h "p "x " g" f" ^"Ġ _"Π g"ڠ g" _" _" " \# _# ]`  à f     # ` @  @ @ # # #  ` @ @ @    #& #/ #4 ^#:  ^`?      #l #t ^0#~@ .   " 8   D K T @     `  c t ` @     Ѡ #  # #  # " $ # & $ $( ( $3 * $< , $D . 0 $M 2  4   8  :  6 < >  @  A C@ ^ G  H n u L N@  J@ S S T^ R V X`e Z`z P@ \ J ^ E@ ` b``  e D g  d` i`  k@ m o q s u w`  y  { } ' R@@Z@@ b@@@ j@@ r@@ z@@ @@@ @@ @@ @@ @@@ @@ @@ @@ @@@ @@ @@ @@ @@@ @@ @@ @@ @@@  @@ @@ @@ @@@ %@@ ,@@ 3@@ :@@@ A@@  H W f q |  ` @       ` @        !  ,  7  B`  M@  X  c  n  y      `  @              `  @        )  4  ?  J`  T@  ^ ! h # r % | '  )  + ` - @ /  1  3 5 7 9 ; ` = @ ?  A  C E ' G 6 I`  K c@ E _  Q _ O ]@ M Q j c@ S r c@ U z c@ W @ c@ Y  c@ [ c@ ] c@ _ @ c@ a c@ c c@ e c@ g @ c@ i c@ k c@ m c@ o @ c@ q c@ s c@ u c@ w @ c@ y  c@ { c@ }  c@   @ c@  # c@  0 c@  = c@  J@ c@  W c@  _ c@  g c@  m@ c@  u c@  } c@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  @ b@   b@   b@   b@  '@ b@  . b@  5 b@  < b@  B@ b@  I b@   U  ] ` @ Ӡ _ `   E  Q  ]@  g  r  }        `  @          `  @   ) 3 = G Q ` [ @ e o y     `  @   ! # % ' ) ` + @ - / 1' 32 5= 7H 9S ` ;^ @ =i ?y A C E G I` K@ M O Q S  U W Y'` [2@ ]= _H aS c\ ee _ gp _ i{` _ k@ _ m _ o _ q _ s _ u _ w _ y` _ {@ _ } _  _  _   _  _   _ +` _ 6@ _ A _ L _ W _ b _ m _ x _ ` _ @ _  _  _  _  _  _  _ ` _ @ _  _  _  _   _  _ ! _ +` _ 5@ _ ? _ I _ S _ ] _ g _ p _ y` _ @ _  I @       j`  r@  z            `  @              `  @              #`   0@   =   J  W  _  g  m  u`  }@       !  #  %  ' ` ) @ +  -  /  1  3  5  7 ` 9 @ ;  =  ?  A  C E ' G .` I 5@ K < M B OQSǠU$  J XZ` ]  ace_f\h j VlW np$!r.t ;@  w gv y{`C}KSuv ^ `i  $`  % % % $$&$ @  @   (     7 @AK ; C @J$ U  g @`@  i@ r z `    ` @   %3`    ph`+@ 4 ? @J%BX@u$^@%@fo( xu@&^@  *{ x %R%*%%@*`  %*%*"$%*&(+%*0%@ @ / %1@ 3 0%@5 &G &Y8: &k<&} & >&@@@@&@@B&@@D&@@F&@@@H&@@J& L&@@N&@@@P&@@R&@@T& V& X&` Z'@ \'  ^' `' b'" d'* f'2 h':` j'B@ l'I n'P p'W r'^ t'e v'l x's` z'y@ |' ~' '0'@ 0'@ 0'@ @  0("@ : K3@ " $ [ ? V Yf.)6'0g; 3!"+#_$U% &T' (π)**+,t-b.9/]0$123475:67?8&9:7;07QÀ7i5a[VӀ2,Ȁ;&yJ)0P99`À:`=%PIJsJtMj6b\W]Ӏ<€'3zK+` : K3@"$[?V Yf.)6'0g;3+_ U   T   π*tb9]$7:?&#(&0('P(*,: -:,.:</:D0:T1:d3:|/:5:-:8:`839:`94;567N8<9ր:J;7<@=(>i?@&A߀B5C4DEF6GhH4IJ2K`LYMUNЀO0P+QRfS:TU%VWNXY?Z['\=]0=^P=fB:D:E;F;D;LI;h`ImJ;t`Jn<opqOrsEt-umvwax>yQzÀ{|7}i~5a[VӀ2,Ȁ;&yJ)N0NPN^< _<@`4R]y.NNk7 cX =ۀ(4{L,{0{P{>>$>,>4>L>`>h>>>>>>?,?8?L?T?t?|????????????@`@`?: S  ^  |Ol8%d]>)5|M. 0!P*@@@@AAAA$A4ALAlAAAAB B<BCC4C<CLCXC`CtCCDD D,DLDLDTDTDXDXDdDlD D D D D DDDDDDEE E`<E`=A>??@UAB_CDEFXGmH9I&JeKbL~M?NO*PCQRSS0TU0VP\!ED"E`#El$E&E!E)E`)a*E`*bBcDde[fg`hijkflnm:n(ofpcqrs+tuTv2w.x0.yP./F(0F,1F84F<7FL:Fx;F>F?F4FCFFF`FGF`GGJago;gg ,Y3K0KPKLG(MG,NG8SG<UGTXGd[Gt^G_G`GaGbGcGgGhGkGlH XHpH0sH<`stHT`tHSbhp<h -]5y0yPy|H}H~HHPHHHIII(`IPIhIpIII`߀I`NYcۀiqAi .^70PIIIIJJJ0JDJXJlJJJJ`J`O_djrBj?_``  . V6-rRK/-1ՀACD.-7 W!<"9#u$[%&A'<()H*O+9,X-B.:/v0F1{2Q3l4]50]6P_CkK(oK@pKXxK\`xFyK`yGYHII;JwKdLƀM]NxO|PQ0RPaKK`dK`eZfXg<hyiHjakl~mn0oPrL`€sL`Àt[u^v=wzxyz{|ʀ}Ѐ~0ЀPԀL8`ՀL8`ր]c?|ˀ؀0؀P܀LTL`LlPLL`LPLLLLLLLLLL`M`M`^h@΀0PM$`!!M,`!cn`check_nrpe.c<<>>/usr/include/sys/_inttypes.hint16_tuint16_tint32_tuint32_tint64_tuint64_tintmax_tuintmax_tintptr_tuintptr_t/usr/include/sys/types.hdev_tino_tmode_tnlink_tfpos_toff_tblkcnt_tpid_tgid_tuid_tssize_t__site_t__cnode_ttime_tsize_tclock_t__daddr_t__caddr_t__swblk_tcaddr_tid_tuseconds_trlim_tu_shortu_int/usr/include/machine/vmtypes.hr_physadrval_quadlbl_sflbl_sslbl_slbl_splbl_rplabel_tlk_padlk_flagslk_namelkinfo/usr/include/sys/_fd_macros.h__fd_maskfds_bitsfd_set/usr/include/stdio.h__fileH__fileL__flag__base__ptr__cntFILE__unused__smbuf__newbase__bufendp__va_listva_list/usr/include/stdlib.hremquotdiv_tldiv_t/usr/include/sys/_wchar_t.hwchar_t/usr/include/sys/wait.h/usr/include/sys/sigevent.h__sival_ptr__svi_int__svi_int_ssigvalsigval_tpthread_attr_t__sigev_reserved__sigev_notify_attributes__sigev_notify_function__sigev_value__sigev_signo__sigev_notifysigevent/usr/include/sys/time.htm_isdsttm_ydaytm_wdaytm_yeartm_montm_mdaytm_hourtm_mintm_sectmtv_nsectv_sectimespecit_valueit_intervalitimerspecRTTIMER1RTTIMER0CLOCK_PROFILECLOCK_VIRTUALCLOCK_REALTIMECLOCK_INVALID__clockid_tclockid_ttimer_ttv_usectimevalitimervaltz_dsttimetz_minuteswesttimezonelohi__cycles/usr/include/sys/_rlimit_body.hrlim_maxrlim_currlimit/usr/include/sys/resource.hru_nivcswru_nvcswru_nsignalsru_msgrcvru_msgsndru_iochru_oublockru_inblockru_nswapru_majfltru_minfltru_isrssru_idrssru_ixrssru_maxrssru_stimeru_utimerusage/usr/include/sys/siginfo.h__pad__dev_id__lockpage__addr__gfault__band__fd__file__fault__status__SIGCLD__uid__kill__pdata__pid__proc__datasi_valuesi_errnosi_codesi_signo__siginfosiginfo_t/usr/include/sys/newsig.hsigset__sigset_tsigset_t/usr/include/machine/save_state.hss_fp31ss_fp30ss_fp29ss_fp28ss_fp27ss_fp26ss_fp25ss_fp24ss_fp23ss_fp22ss_fp21ss_fp20ss_fp19ss_fp18ss_fp17ss_fp16ss_fp15ss_fp14ss_fp13ss_fp12ss_fp11ss_fp10ss_fp9ss_fp8ss_fp7ss_fp6ss_fp5ss_fp4ss_fp3ss_fp2ss_fp1ss_fp0__fp_dbl_blockfp_dbl_block_tss_fp31_loss_fp31_hiss_fp30_loss_fp30_hiss_fp29_loss_fp29_hiss_fp28_loss_fp28_hiss_fp27_loss_fp27_hiss_fp26_loss_fp26_hiss_fp25_loss_fp25_hiss_fp24_loss_fp24_hiss_fp23_loss_fp23_hiss_fp22_loss_fp22_hiss_fp21_loss_fp21_hiss_fp20_loss_fp20_hiss_fp19_loss_fp19_hiss_fp18_loss_fp18_hiss_fp17_loss_fp17_hiss_fp16_loss_fp16_hiss_fp15_loss_fp15_hiss_fp14_loss_fp14_hiss_fp13_loss_fp13_hiss_fp12_loss_fp12_hiss_fp11_loss_fp11_hiss_fp10_loss_fp10_hiss_fp9_loss_fp9_hiss_fp8_loss_fp8_hiss_fp7_loss_fp7_hiss_fp6_loss_fp6_hiss_fp5_loss_fp5_hiss_fp4_loss_fp4_hiss_fpexcept7ss_fpexcept6ss_fpexcept5ss_fpexcept4ss_fpexcept3ss_fpexcept2ss_fpexcept1ss_fpstat__fp_int_blockfp_int_block_tss_newcksumss_oldcksumss_reserved2ss_cr27ss_cr26ss_cr25ss_cr24ss_cr13ss_cr12ss_cr10ss_cr9ss_cr8ss_cr0ss_sr7ss_sr6ss_sr5ss_sr3ss_sr2ss_sr1ss_sr0ss_sr4ss_cpustatess_cr22ss_cr21ss_cr20ss_cr19ss_cr15ss_pcsq_tailss_pcoq_tailss_pcsq_headss_pcoq_headss_cr11ss_gr31ss_spss_ret1ss_ret0ss_dpss_arg0ss_arg1ss_arg2ss_arg3ss_gr22ss_gr21ss_gr20ss_gr19ss_gr18ss_gr17ss_gr16ss_gr15ss_gr14ss_gr13ss_gr12ss_gr11ss_gr10ss_gr9ss_gr8ss_gr7ss_gr6ss_gr5ss_gr4ss_gr3ss_rpss_gr1ss_reserved__reg64__reg64_tss_cr27_loss_cr27_hiss_cr26_loss_cr26_hiss_cr25_loss_cr25_hiss_cr24_loss_cr24_hiss_cr13_loss_cr13_hiss_cr12_loss_cr12_hiss_cr10_loss_cr10_hiss_cr9_loss_cr9_hiss_cr8_loss_cr8_hiss_cr0_loss_cr0_hiss_sr7_loss_sr7_hiss_sr6_loss_sr6_hiss_sr5_loss_sr5_hiss_sr3_loss_sr3_hiss_sr2_loss_sr2_hiss_sr1_loss_sr1_hiss_sr0_loss_sr0_hiss_sr4_loss_sr4_hiss_cpustate_loss_cpustate_hiss_cr22_loss_cr22_hiss_cr21_loss_cr21_hiss_cr20_loss_cr20_hiss_cr19_loss_cr19_hiss_cr15_loss_cr15_hiss_pcsq_tail_loss_pcsq_tail_hiss_pcoq_tail_loss_pcoq_tail_hiss_pcsq_head_loss_pcsq_head_hiss_pcoq_head_loss_pcoq_head_hiss_cr11_loss_cr11_hiss_gr31_loss_gr31_hiss_sp_loss_sp_hiss_ret1_loss_ret1_hiss_ret0_loss_ret0_hiss_dp_loss_dp_hiss_arg0_loss_arg0_hiss_arg1_loss_arg1_hiss_arg2_loss_arg2_hiss_arg3_loss_arg3_hiss_gr22_loss_gr22_hiss_gr21_loss_gr21_hiss_gr20_loss_gr20_hiss_gr19_loss_gr19_hiss_gr18_loss_gr18_hiss_gr17_loss_gr17_hiss_gr16_loss_gr16_hiss_gr15_loss_gr15_hiss_gr14_loss_gr14_hiss_gr13_loss_gr13_hiss_gr12_loss_gr12_hiss_gr11_loss_gr11_hiss_gr10_loss_gr10_hiss_gr9_loss_gr9_hiss_gr8_loss_gr8_hiss_gr7_loss_gr7_hiss_gr6_loss_gr6_hiss_gr5_loss_gr5_hiss_gr4_loss_gr4_hiss_gr3_loss_gr3_hiss_rp_loss_rp_hiss_gr1_loss_gr1_hi__reg32__reg32_tss_mpsfu_ovfloss_mpsfu_low__ss_narrow__ss_narrow_tss_32ss_64ss_widess_xorfpintfpdblss_fpblockss_padss_narrowss_flags__save_statesave_state_tss_size__stackstack_tmcontext_t__uc_stack__uc_sigmask__ucontext__uc_link__sub_ctxtuc_subcontextuc_reserved_flagsuc_created_by_getcontextuc_sparesuc_mcontextucontext_t/usr/include/sys/signal.hsa_flagssa_mask__sa_handler__sa_sigaction__handlersigactionpthread_tss_onstacksigstacksv_flagssv_masksv_handlersigvec/usr/include/machine/frame.hfm_pspfm_epfm_clupfm_slfm_crpfm_erpfm_esr4fm_edpframe_markersm_argsm_rval2sm_rval1sm_errorsm_eosyssm_syscall_actionsm_omasksm_onstacksm_syscallsiglocal_miscsl_sssl_miscsiglocalsl_sisl_ucsiglocalxsi__paddingsc__xsiP_ALLP_CIDP_GIDP_UIDP_SIDP_PGIDP_PIDidtype_tkeepcostfordblksuordblksfsmblksusmblkshblkhdhblkssmblksordblksarenamallinfoword4word3word2word1long_double/usr/include/pwd.hpw_audflgpw_audidpw_shellpw_dirpw_gecospw_commentpw_agepw_gidpw_uidpw_passwdpw_namepasswds_passwd/usr/include/errno.h/usr/include/sys/errno.h../common/config.hu_int32_t/usr/include/string.h/usr/include/strings.h/usr/include/utime.hmodtimeactimeutimbuf/usr/include/sys/unistd.h/usr/include/syslog.h/usr/include/sys/_stat_body.hst_spare4st_gidst_uidst_spareshortst_basemodest_realdevst_fstypest_netsitest_rcnodest_cnodest_netinost_netdevst_remotest_aclst_sysVaclst_padst_blocksst_blksizest_spare3st_ctimest_spare2st_mtimest_spare1st_atimest_sizest_rdevst_reserved2st_reserved1st_nlinkst_modest_inost_devstat/usr/include/sys/stat.h/usr/include/sys/_flock_body.h/usr/include/sys/fcntl.h/usr/include/time.hhrtime_t/usr/include/sys/ioctl.h/usr/include/sys/uio.hiov_leniov_baseiovec/usr/include/sys/socket.hsocklen_tmsg_accrightslenmsg_accrightsmsg_iovlenmsg_iovmsg_namelenmsg_namemsghdr/usr/include/netinet/in.hin_addr_ts_addrin_addr/usr/include/arpa/inet.h/usr/include/netdb.hh_addr_listh_lengthh_addrtypeh_aliasesh_namehostentn_netn_addrtypen_aliasesn_namenetents_protos_ports_aliasess_nameserventp_protop_aliasesp_nameprotoentr_numberr_aliasesr_namerpcent/usr/include/ctype.h/usr/include/grp.hgr_memgr_gidgr_passwdgr_namegroup/usr/include/sys/dirent.hd_named_namlend_reclend_inodirent__dd_unused__dd_buf__dd_bsize__dd_entno__dd_bbase__dd_size__dd_loc__dd_fd__dirdescDIR/usr/include/inttypes.h/usr/include/stddef.h/usr/include/wchar.hwint_twctype_t../common/common.hbufferresult_codecrc32_valuepacket_typepacket_versionpacket_structpacketutils.hserver_portserver_namecommand_namesocket_timeoutsdqueryshow_helpshow_licenseshow_versionuse_sslmain_MAIN_argvargcpacket_crc32calculated_crc32resultrcsend_packetreceive_packetbytes_to_sendbytes_to_recvoptargoptindprocess_argumentsoptcharsargindexcialarm_handlersigutils.ccrc32_tablegenerate_crc32_tablecrcpolyjcalculate_crc32buffer_sizethis_charcurrent_indexrandomize_bufferfpxseedmy_tcp_connectporthost_nameerrnosin_zerosin_addrsin_portsin_familysockaddr_inmy_connectprotoservaddrhpptrp__SB_masksmy_inet_atonaddrcpbasenpartsppstripindexsendalllenbufstotalbytesleftrecvalltimeoutstart_timecurrent_timemy_strsepdelimstringpbeginendchdisplay_licenseend.c__sccsid__buffer_bufMax__d_pid/CLO/BUILD_ENV/usr/include/sys/_inttypes.hint8_tuint8_tintfast_tuintfast_tint_least8_tuint_least8_tint_fast8_tuint_fast8_tint_least16_tuint_least16_tint_fast16_tuint_fast16_tint_least32_tuint_least32_tint_fast32_tuint_fast32_tint_least64_tint_fast64_tuint_least64_tuint_fast64_tptr32_tptr64_t/CLO/BUILD_ENV/usr/include/sys/types.hmqd_tino32_tino64_tfpos32_tfpos64_tfsblkcnt32_tfsblkcnt64_tfsblkcnt_toff32_toff64_tfsfilcnt32_tfsfilcnt64_tfsfilcnt_tblkcnt32_tblkcnt64_tlwpid_ttid_tkey_t__ushortrlim32_trlim64_tsite_tu_charu_longuintushortubit8ubit16ubit32sbit8sbit16sbit32swblk_tdaddr_tcnode_t/CLO/BUILD_ENV/usr/include/machine/vmtypes.hpaddr_tpage_tpgcnt_tphyspfn_tiophyspfn_tpgaddr_tspace_tprot_tulong_tcnt_tcdno_tuse_tphysadrquadspu_tcpu_tlkinfo_tpl_taid_tsid_t/CLO/BUILD_ENV/usr/include/sys/_fd_macros.hfd_maskdir_off_t__dld_loc/CLO/BUILD_ENV/usr/include/sys/sigevent.hsigevent_t__SIGEV_THREAD__SIGEV_SIGNAL__SIGEV_NONE__sigev_types/CLO/BUILD_ENV/usr/include/sys/siginfo.hSI_MESGQSI_ASYNCIOSI_TIMERSI_USERSI_QUEUE__si_codes/CLO/BUILD_ENV/usr/include/sys/newsig.h/CLO/BUILD_ENV/usr/include/machine/save_state.hssflags_t__sub_ctxt_t/CLO/BUILD_ENV/usr/include/sys/signal.hsig_atomic_ttimestruc_t/CLO/BUILD_ENV/usr/include/machine/frame.hframe_marker_tsiglocal_misc_t__xsi_t/CLO/BUILD_ENV/usr/include/machine/sys/sigcontext.hsc_sfmsc_argssxslsc_ctxtsigcontext__rtc_d_trapfifthfourththirdsecondfirstoset__shldp__fp__shlib_funcptr__d_shl_get_a5_a4_a3_a2_a1_dld_offsetret__d_plt_calleh.h__EH_NOTIFY_CATCH__EH_NOTIFY_THROW__eh_notificationjb_ext_dpjb_rp_primejb_fr21jb_fr20jb_fr19jb_fr18jb_fr17jb_fr16jb_savejb_fr15jb_fr14jb_fr13jb_fr12jb_sr3jb_gr19jb_gr18jb_gr17jb_gr16jb_gr15jb_gr14jb_gr13jb_gr12jb_gr11jb_gr10jb_gr9jb_gr8jb_gr7jb_gr6jb_gr5jb_gr4jb_gr3jb_osjb_smjb_spjb_rplocal_jump_buffer__d_eh_catch_throw__d_eh_catch_catch__d_eh_suspend_ad__d_eh_breakeh_arg_flageh_argeh_type__d_eh_notify_callbackflagtgt_addr__eh_callback_fptr_end_NRPE/NRPE/opt/nrpe/bin/nrpe010055500000000000000000004325000775723223700160060ustar00rootroot000037777777777@#5|@pL? x%%E|G($P@ d   92453-07B11.30?5= 92453-07B11.16.01> D=@(#)$Revision: 92453-07 linker linker crt0.o B.11.37 030623 $ @9HASH 1.0 mLmUc2HgoNnCVhNYNkFILu4steCIbsKLp98dN9q2vkWZYA50 @9HASH 1.0 u5yfgtGOlrWhoJO61H4Go7F8OANoi6hdLREypVOU3wpmbRoj 92453-07B11.16.01>ޕ TN@(#)HP92453-02A.11.00 HP-UX SYMBOLIC DEBUGGER (END.O ILP32) $Revision: 75.04 $@ `PX"P  LX ]tX!^Y Y X xX 8ppX HPPX I X X  (>(@`>(@<>( @P>( d@ dh>(pl@plt>(&@ >('@>((@>(R@000 x P@@А9P9P +^(+^Y P$? @> d@ $PRIVATE$$DLT$$PLT$ $SHLIB_DATA$$TEXT$ $SHLIB_INFO$ $DATA_START$ $MILLICODE$$CODE$$LIT$$UNWIND_START$$UNWIND$MILLICODE$$UNWIND$ $UNWIND_END$$RECOVER_START$$RECOVER$MILLICODE$ $RECOVER$ $RECOVER_END$ $PFA_COUNTER$$PFA_COUNTER_END$$DATA$ $SHORTDATA$$GLOBAL$ $SHORTBSS$$BSS$$DEBUG$$HEADER$$GNTT$$LNTT$$SLT$$VT$$LINES$00$ 08@0D@0 T@#0` @0 l @0  @ 0  @0  @0  @     U@$  @  @1U 0 @0 @+` 8 0 P@ 0 @) D 0 @ 0 (@ 0 8@ 0 H0 \P0 l 0  0 @0 @0 @00 @0  @0  @0  @0 @0, @ P`  lxP x@+K !  @ A" @* x Q$G0< @|0P @x0d @t0t @p0@ 0@)0@ 0@)  x @*K @*k @+k @* $@*@ @ @ 00@ 0$@)04@)0$0@+d0d @|0x @x0 @t0 @p 4,( H, X@* d@+  p@++ |@+ @+ @+ @+U* @ P`,G y  -' A-W y Q/0@ 0@)0@! 0 0  @ U@*0 $@20 |@2 4@20 @20 @+ 0 @!0 @0  @80  @0 ( @(0 < @0 P @0 d @0 x @0 @0 @0 @0 @0 @0 @0 @0 @0 A@4;0 A @a ,z(U $2 8 @80 0@r+U D2U P2U \03U h3U t30U 3HU3`0  @:U P3x0 @c#0  @Z?0 @JU 3U x3U 3U (3U ,3Udp4UX4 0 A 8@W0 L@DU h`:U t:,U h:DU :\0  @AU (:tU X:0 A @B{U :U :U @@U  @U@U(AU$PB`0 0@C7UD`CP@ U\CUl CU|HC0 A@iCU DUD0 @Q  @UD0UpDHU8D`UDx0 @P[UD0 U @o0 ,@ZUDPJ0 QP@^O0 Ud@R0 @t@d0 A@c0 Q@n0 @QSUQUQU8QU0Q0 @W U0R UHR$UxXR<U hRTUpRlU,RU8W0UDWHUTW`U`WxUlpWU|WUWUHW0 @]UZUh]0 A@q Db TbT dbd tbt b b b bUXa yd8 ,@ < XUpdU|dUxd0 Q@e d @0 U@fUf@UxfXU`fpUfd@UhU 8hUhU(iU8i( 0 H@0 T@mU`@nUloUxp  @  $ @0D@) 0T @0` @0 lsUs\Ust0@ 0@ 0 U@t0 @t{0 @0 @0 @0 P,@t0 Q@@t0 \@u0l @0 @u0 @u 0u0 @u        , H 0 X@ 0 p@0$0@0@+d0@ss6x 48l6x 487 d@,D7$5px7 h4 76xchD8p h4877 4,7p7 488 ldp|8pd@ t4 4pch|ch ,48 D48X48 5X5X \486x`dX8p 488c 4l8p 48T8p 46x5X6x t48(d@c6xc`8pd@ 8d@48 48 $48 P488pxd6x 477 5X|6xD6 4D6x8d48c\6x88p0 A@4820 8@  *0 @QQ0 @WV0 Q@@tsGmain __text_start ___stack_zero __data_startcrt0.oPA-RISC 2.0 Assembler HP92453-03 UX.11.01.24../mapdld.c /CLO/Components/LINKER/Src/csu/CRT_RELEASE ccom options = -ESlit -DA1.1 -DS1.1 -Oq02,al,ag,cn,Lm,sz,Ic,vo,lc,Mf,Po,es,rs,sp,in,vc,Pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,Lu,lb,uj,dp,Fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! +k -AeHPC HP92453-01 W111107../maptsd.c /CLO/Components/LINKER/Src/csu/CRT_RELEASE ccom options = -ESlit -DA1.1 -DS1.1 -Oq02,al,ag,cn,Lm,sz,Ic,vo,lc,Mf,Po,es,rs,sp,in,vc,Pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,Lu,lb,uj,dp,Fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! +k -Aeset_tpL$0007L$0002L$0004L$0001 __map_dldL$0005__do_thread_initL$0008$real_mcount_ptr_nullerrorC$16writestrlen _crt_errnoitoa__exit S$18DD$itoamemcpyC$43$__map_dld _crt_open _crt_readlseek _crt_mmap _crt_close _crt_syserrorsyserroropenclosereadlwp_setprivatelwp_getprivatemmap_utssys BS$maptsdC$10 S$12DD$itoainvoke_init_fini invoke_fini L$plab_start__set_tp__get_tp$global$$START$$ARGV_environ _fp_status _CPU_REVISION_CPU_KEYBITS_1 _FPU_MODEL_start $$dyncall __tool_init_mcount_real_mcount_ptr_clear_counters _sr4export__d_trap $UNWIND_START $UNWIND_END$RECOVER_START $RECOVER_END __dld_flags __dld_hook __dld_list __SYSTEM_ID _SYSTEM_ID _FPU_REVISIONenviron __d_trap_fptr $PFA_C_START $PFA_C_END ___init_start ___fini_start ___init_len ___fini_len__islwp__cxperf_dld_hook __profil_size __dld_loc __dld_path__ismt_ktepv_tepv__tdsize _thread_init __tls_init__tls_prealloc_dtv_etext_end __init_start __fini_start __init_len __fini_len__errno __tdata_addr __tdata_sztaddr __sys_atexitnrpe.c /tmp_mnt/home/benny/temp/nrpe-2.0/src ccom options = -g -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,cl,mo,xn,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = cc -g -DHAVE_CONFIG_H -lnslB111108C$41M$40 $000000D3 $000000D4 $000000D5 $000000D6 $000000D7 $000000D8 $000000D9 $000000DA$L15 macro_argv allowed_hosts command_name config_file server_portserver_addresssocket_timeoutcommand_timeout command_list nrpe_user nrpe_groupallow_arguments show_help show_license show_version use_inetddebuguse_sslprocess_argumentsprintfdisplay_licenseexitopenlogstrncpystrcpygetcwdstrncatread_config_filesysloggenerate_crc32_tablecheck_privilegeshandle_connectionforksetsidsignalchdirumaskdrop_privilegeswait_for_connectionsfopenfgetsstrtokstrcmpread_config_diratoistrstr add_commandstrdupfcloseopendirreaddirsnprintfclosedirmalloc find_commandsocketerrnostrerror setsockoptbzero my_inet_atonbindlisten sighandleracceptsleep getpeername inet_ntoais_an_allowed_hostwaitpidrecvallvalidate_requestfreeprocess_macros my_systemrandomize_buffercalculate_crc32sendall free_memorypipefcntltimesetpgidmy_system_sighandleralarmpopenpclosekillstrspngetgrnamgetegidsetgidgetpwnamgeteuid initgroupssetuidcontains_nasty_metacharsstrchrstrcspn my_strsepgetoptoptarg utils.c /tmp_mnt/home/benny/temp/nrpe-2.0/src ccom options = -g -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,cl,mo,xn,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = cc -g -DHAVE_CONFIG_H -lnslBS$utilsS$24$randomize_bufferC$26M$25fgetcsrandrandmy_tcp_connect my_connect gethostbynamegetprotobynameconnect __SB_masks_isdigitisascii _isxdigit_islower_isspace$$mulUstripsendrecvstrpbrkend.c /CLO/Products/XDB/debug ccom options = -g -DA1.0 -DS1.1 -Oq00,al,ag,cn,Lm,sz,Ic,vo,lc,mf,Po,es,rs,sp,in,vc,pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx,st,ap,Pg,ug,lu,lb,uj,dp,fs,bp,wp,Ex,mp,rp,ap,dn,Sg,pt,kt,Em,pc,np! -ESconstlit -Ae driver_command = /CLO/BUILD_ENV/opt/ansic/bin/cc -DCPLUSPLUS -DDIS2 -DSCREEN_SPEEDUP -DREG_NAMES -DCore8 -DDEBUG_DYNAMLOAD -DDYNSYM -DTEMPLATES -DNESTED_CLASS_30 -DNESTED_CLASSES -DXSW -DCORE -DIMAGE_DEBUG -DEXCEPTION_HANDLING -DSHLIB -DDYNSYM -D_HPUX_SOURCE -DNLS -DKSH -DADOPT -DSYSIIIOS -DSYSVHDRS -DPTRACE_SYNC -D__HP_CURSES -DSPECTRUM -Wp,-H256000 -DPA89 -DTIMEX -g -I../include -I../debug +DA1.0 +DS1.1 DS$endcSD$endc __d_syserror__buffer_bufMax__d_pid __rtc_d_trap sigprocmask sigismember__shldp__shlib_funcptr __d_shl_get __d_plt_call__d_eh_catch_throw__d_eh_catch_catch__d_eh_suspend_ad __d_eh_break__d_eh_notify_callback __d_getpid__eh_callback_fptr_end___d_ldsp__wdb_call_dummymulUUX.11.01.06 (ROSE)$loop$return$shmcand$addtmp$two$endloop$fiftnxdyncallUnoshlibs$$dyncall_external$$dyncall_external_20__tdsizeetextedataend_etext_edata_end __SYSTEM_ID _fp_status __profil_sizeLXt>B>B>>/=Xt>B>>/?Xt>B45 ?5:>zx ?5<>zx>ޔ8w  Xt>ޕXt6T6T8Xt6UK6UKy]4/ D  W pHO,;A8v˚vhůY;'8&@XFNt 4L4R'-(Kw6L'HVL&Hl!xyP6 e!x)D+!xry 4 sYEuR Rg mTLL#VQ/}^\ kD!=kthhv!x݋:4l kD sE!xЭg6e\kQ0@A֘ kD6u-xhŠ !x/P'6&f&//] y@ &fQ/!x /Bjgyh!xn ƿkݶ̱b-˚v8vhů;An bltD8rP.4R'-(;w6LΜ'HVLΦ艤HlxzP6ex)D+xq 7 sY5uRRg mTLL#&Q/ ^\kG=kwhhx݈::lkG s5xӭg8e\͈k_0\1֘dkG6txhС x/ 6&f/&/_੤] y0&f!/šx /Bgzhxm2QVsD   '@ -@ 4@ :@ A@ K@UV@Ud@ Uo@+dUt@Uu@U} U UPUU@UU-2U2U2@pU GQUG@U RVUR@U gsDUg@U ~ %+18>CLSY^ejot{&.5?HOV_mu}&2;GRg r z     nrpe/usr/lib/libnsl.1/usr/lib/libc.2_tepv_ktepverrno__ismt__dld_loc_SYSTEM_ID_CPU_REVISION_FPU_MODEL_end_environ$RECOVER_END$RECOVER_START$UNWIND_END$UNWIND_START$ARGV__text_startsigismembersigprocmaskacceptsignalsetsockoptchdiralarmisascii__sys_atexitpopenmallocwritefopenpclosesleeprandgetgrnamstrcpyfcntlpipestrcmpkillreadforkstrchr_startrecvgeteuid_isdigitfgetsfclosefgetcsrandumaskexitopenreaddirclosedirstrncpygetpeernamesendsetuidsysloggetoptgetprotobynamestrtokgetpwnamsetsidgetegidstrdupinet_ntoasnprintflistengetcwd_islowergethostbynamewaitpidconnectsetgid_isxdigit__errno_isspacestrlenstrncatprintfopenloginitgroupsstrpbrkbindatoisetpgidtimeopendirbzerofreestrstrsocketstrcspnclosememcpystrerrorstrspnmain__d_trapinvoke_finisighandlermy_system_sighandler__d_eh_notify_callback__ismt_ktepv_tepverrnooptarg__SB_masksY  @ !@9d!: A ZA ZA:x p` Zu :8 ( Z A Z!A  Z@ k? k?k?@@K?@ @Ku;Ks; k?#`87{ 7 +h#+h8'y 4yEe'yנjb+h%+h% (4Ц @Ц D(43 H?(ਃ 43 ` 7+4>7D7%7744z#)74444@h@7D7%77+4># "74444+H87D7%77+`4!H6 @ 24744447#0.74k?7+`4?K @ 7K?Y@7?@@ 7K?@ @@@@k?ok? k?(07%k?!74#4y4@04 @HK?!K?!7@4 0@@474@4 r+4?K @7?4y4@p4@7?7?7@@44y4@ 4+47@J K>K?K? @O? 44@CW?7_7?7@7 "06/'7?7747?'I'G9 8ࢋ1DN1dN3'2 009%G' Z0N1N3! ' 2  :7`1@1@ 9eG'Z0N1$N;J'J:K 66`9@9@9eG'Z0N1N3! ' 2  U6`1@1@ 9eG'Z0N1$N;J'J:K 6`9@9@9eG' Z0N1N3! ' 2   6s`1@1@ 9eG'Z0N1$N;J'J:K 7`9@9@9eG'Z0N1N3! ' 2  7Z`1@1@ 9eG'X0N1$N1:J'J97!`8G ' J <7=`6?@7?7\7W 7?]P6?7=6t7967Z?7_6s`j 78676@k?ok< k<k<k4`@ 5z4` @G> *(04<47p_4+4-IK>)K>A@ 0K>YK>i4ߟ444k?K>945k?5@`4 $(7 Jk?4?4k?44@4$7  k?K>Q_ k?45@4 7(048kQ45k?4@4#h75z@ @k>I+4*k>C>+3 4k>4!k?)46+k>֓ c>44Ka?k>46Ka?k?1647k>6Ka?k>5B4=k>7+`K>k? ֠ 49k>7?X+k?!4 48k>6+`k?74"H_k?+`4<Kpk?+`4-k?9+`5k?Q4!4=!xk?Ypk?A(043k<6z4_m47=(04:k<7Z4_%4G=(04<kak?q ( K>1k?64"k?4AH k? }+`k>4&4 Hk?y+`4$h07>7>k>444? -7K;KKs>  k?Ku:Ks: k?  4 "@@@@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4& "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4r "@@@@k?7_@K?Y@7?+4!4! <4?@@k?ok? k?(07%k?!74#4y@4_4 @HK?!K?!7_u4 0@@474_54 r+4?K @7?4yP4_4@7?7?7_44y`4_4+47_uJ K>K?K? @O? 44@CW?7_7?7@7 "06 /'7?7747?'I'G9 8ࢋ1DN1dN3'2 009%G' Z0N1N3! ' 2  :7`1@1@ 9eG'Z0N1$N;J'J:K 66`9@9@9eG'Z0N1N3! ' 2  U6`1@1@ 9eG'Z0N1$N;J'J:K 6`9@9@9eG' Z0N1N3! ' 2   6s`1@1@ 9eG'Z0N1$N;J'J:K 7`9@9@9eG'Z0N1N3! ' 2  7Z`1@1@ 9eG'X0N1$N1:J'J97!`8G ' J <7=`6?@7?7\7W 7?]P6?7=6t7967Z?7_6s`j 78676@k?ok? +4?+497 h74j@X@+7?4:``07_ x 7_4?K?YK?@O?+47+486 `7K?YK?Y+456 p `7_4c=K?Yk?7_M4K?Y@7?k?o_4+4=7 ` (@+476x@+`43+48+`4#h`(h`74hu6wh@h+`446hs  hw!k?4?4k?74_4$+`46k?j!H7_u@Hx !@K?HZ_EHyK>+44k?_UJ]+`h` 4?ha+`4<Kp+`47+`49k 4x>j44477K>@O?(04:k?!7Y7Zp_}4K>@z@@`@ @K?@ @Ku>AKs>I k?KuQKs>Y k?Ku1Ks>9 k?Ku>!Ks>) k?KuKs> k?Ku>Ks> k?Ku=QKs=Y k?KuKs> k?Kuk?yK?q#"7K?4|K<@O=Ku:Ks: k?k?ok?9k?14H#$7k?K? 4?K?K?9# &07K?4:@K?1# &07K?+H3 k@K?+h4 +H5 :4"06K?9K?1# &744|K?Y@O?k?7k?9+H! k?K? jK?9K?#0$7 8K?K?Jt@k?K??@47K?Y@7?Ku?Ks?  k?Ku?AKs?I k?Ku:Ks: k?Ku>Ks> k?Ku>Ks> k?Ku=Ks= k?Ku:aKs:i k?Ku;!Ks;) k?Ku+H! g>7?4#'7+4:# &7 k>+4:7>#"7 J4#07# &74# %7K?A7>4 #(7`Ka?H:#'p774"c06yPKa?H8# &74# %7K?A4 #(07`Ka?H:#'p774"06Ka?H8# &74# %74 "06# &7+H6 *4 #049 # &74+H9# '74+H9# '7+H? z4"c06yG>Ҙ# &74"06+`48# &7K?A44#(`7k?IK?I`2Ka?H!4 Ka?H3h "4#(7O# ' 7k?K?$j# ' 7k?K?$K?I`Ka?H:#'p774 #049@Ka?H8# &7K?A# (7K?A# (74 k?QK?I7?7?Q#(7k?9K?9``Ka?H:#'p774"06Ka?H8# &7K?I# (7 7?k?+H6 rK?H:#(774#07K?Ftҗ# &7K?J#(777?a4 +480#!7c?7?a# 7 :4"06@7?a# &7b+H! " *4#07# &7K?I#%07+H3 b 24"067?a# &7K?I# (74# %7JK?I# (7K?44#) 7W4 "06# &7K>Y@7>Ku>Ks> k?k?o7?(a4>hz?k?qk?y+H6 *4 #0490# &74ki+H3 ` JHz?+49?17i+H7 #/H7k?K?@:4"06p# &7 JKi46 24#07# &7 +4:?1#0%7!"4"c06yP# &7+H: #%7+h k?K?4 @+`46 K? #%7K?+`43 K?6k?K?4 _m@b+H3 b :4"06+48?E# &7+H: "06#0$7 7q4+48@+47`#!7co+H6 24 #04907q# &7k?q+H: #&h7+hKs> k?Ku>Ks> k?Ku:Ks: k?Ku:Ks: k?Ku:Ks: k?Ku;Ks; k?Ku;Ks; k?Ku;Ks; k?k?ok.k.k.k.k?K. *K."06 `# &07K. K. 47?q# #X7K?q4# #7K?y4# #77?# #7# ' 7k/QK/Q 7/q4+48P#!7c?oK. ZK.7/qK.6?# &7K.6?K.?`K?q# (7K?y# (74K/Q#"K?q# (744# #74+H9# '7K.# $7K."06# $H7k?K? 7/q #0494# &7c?o7/q# &77K?y7/q7# $x740k/a7/q"06 `# &077/q4K?#0$X7K?# $7k/YK/Y 4(k/aK/Y?4 k/a7/q# &77K?y7/q6# $x7K?y# (74# $7K/a# %7K?y# (7K/Q7/Y4#) 77?# #7K/Y4 k/aK/a4 4k/aK/a ` K/a@ 4k/aK. K."06 `# &07K?qK.K.6?# $7k?K?? Ka?H??@K? :K. *K."06 `# &07K/a K?? K?K? K.@rK.4K/Q 4# %7K/Q `4# %7K?q# (7K/a4|K.@O/@ @K?@ @k?7k?94# %7K?Y@7?Ku?QKs?Y k?Ku;AKs;I k?Ku=AKs=I k?Ku=Ks= k?Ku=!Ks=) k?Ku;Ks; k?Ku>aKs>i k?Kuk>4?k?4?k?K>!K> #049# .`77K># &7K># .7k?K? K?Jt8k?4"06K># &7"K>#0$7k?# .7K? ZK?# .7 24 #049PK?# &7K>"bK>"c06y# .`77K># &7K># / 7k?K? K?J8k?4 #049K># &7"K>#0$7k?# /P7K? K>K?# /7 Ka?H3b 24"06# &7:4"06# &7h4?K?# /7 24"060K?# &744|K>@O?@k?74?k?4?k?# /P7k?# .7k?K?` K? J4"06# &74# %747K?Y@7?Ku;Ks; k?k?ok>K>Jk?K>K>4#'7k?K?K? :4"06# &74?K>F? K>Ftҕ :4"06 P# &7`4?K>` K>7"c06y `#0$7 :4"06 # &74?K>6#0+7 :4"06!# &7`4?K>4:4B#0%7 R+H? :4"c06y!`# &74?K>6"06"#0$7k?K?#0%H7+h< +H6  :4 #049"# &74?+H? !k?K?4 A"06"4#0$7k?K? rK?#0%H7K?+`43 +`45 K?  :4#07"# &74?+`43 K?t "06 `#0$7 :4"06"P# &7@4?K?4?k?K?4 ^=@44|K>@O?Ku?Ks? k?k?ok?k?9K?9 4K?9"06"#0+7k?K?K?9# &7 444|K?YK?@O?k?ok>k>k>k?k?K> #049 `# &07k?7>#07"# " 7k?K?%k?K?! K># &77K?# &7 K>6?5K>K># &7 7?K>K?6x# &7K>6?K>  4Pk?K># &77K?# &7 K>6?K?"06"#0%7K?< K?76z#0$7k?K?`:K?4 `"+`4! K? ? k?BK?"06 `#0$7 rK>K># &7 6?K> #049"6# &7K>K># &7 7?K>"06"6x# &7K>6?K> K>K># &7 6t?K>K?6# &7K>6?K> K>K># &7 6t?K>"06"6# &7K? K>K># &7 4??K>K? +49K?7# &7K>6?K>  k?7>#07"# " 7k?K?:=@47K>@O?Ku9k>1 $4: #7@#0$(7k?K? JK?#)7k?K?#0%x7"4# #7k?K?#)H7k?K?K>1@#)x7k>7>&0"6 ,!0N#7 .q0n9D7>&DK>6`ҶK?K>9?vK?6k?K?K>16_@K>Y@7>k?7k?9k?1k?)K?9K?1K?)+47 #-@7k?K?7K?Y@7?Ku=Ks= k?Ku?1Ks?9 k?Ku=Ks=  k?Ku=Ks= k?k?ok? k>k>k>k>7?a4 #'74g?aK>g?eK>7?i#"7 K>#,7k?K? :"6PK># %p747?iK?J H9K?K#,7K>#,7 @k?"d6zK># %p7H44K>"6#0$704K?J4#'@7K>K>H?`2"d6z# %p7h4K>J7?a4 #-7k?K?a Ka?H64ނ "4܂ B4ʂ b"6# %p7"6P# %p7R"6# %p7" $4:# %p7444|K>K? @O?Ku<Ks<  k?Ku:Ks: k?Ku=Ks= k?Ku=Ks= k?Ku>Ks> k?k?ok? k?k?k>k>7?qk?K>Btҕc?iKa?H6 :C?i?Ka?H3 4 0 C?i#!77` 4k?Q4k?YC?i4` K>6k>B?c?iC?it4 C?i4 B4 k?YK>6k>Bc?i4k?YC?iz#!7!Ka?H4 :C?iҶKa?H! 6 4 0 C?iҚ#!77 K?YK?Q#0+@C?iҶ6?=k?QK>6tk>BҶc?iK?Y4 !C?iz#!7!Ka?H4 :C?iҶKa?H! 6 40 C?iҚ#!77!K?QԕC?i4%Ka?H? :C?itKa?H5 406C?i#" 77 4 e Uk?QK>6k>@?c?iC?iҕ4\ K?7? x4K?6tk?K?QuK>6k>@?c?i_C?iҕ C?i#!7 Ka?H! :C?iKa?H4 40 C?i:#"P77 4K?7?q RU6Ҷ6k?aK?a聚!䀊 *  j4RK?Q֟ `4K?q K?Q _k?QK?Q֟ 4K?q K?y  SK?Q tUk?QK?Q46 4K?q K?yִ  VK?  SK?Q tUk?Q@K> K>K?Q ?44|K>K?K?K? @O?k?7k?9K?9# &7k?K?baK?6?k?K?9K? 4@ rK?9K? ? JK?9K?t Ҷ "K?9K? ? t "K?K?9  *K?7?k?K?~@K?Y@7?Kuk>k>k>k?qK>Kk?yk?K>K>J#'77?# #7K?qK>J5ArK?qK> K>6K?y4#/7k?K? Ka?H6 r7?# #7K?K? K>`4#(7RK?@bK?qK?6k?qK?yK? k?yK?qK>H?^@K>K?qtK?@ K?K?q67K>@7?Ku>qKs>y k?k?ok>k>K>H?k?K? 4K>BҶ K>@?` K>BҶc?C?? k?K?BtҕC?5 K?Hk?K?6t6C?ҹ#0%7k?*K?K># !7k?K? :K?4?k? K>K?tK>K?4|K>@O?@k?7"6 # %p7 $4:# %p7#7@# %p7"d6z# %p7"6`# %p7"6# %p7"6@# %p7 $4:# %p7#7 P# %p7"d6z # %p7"6 0# %p7"6 # %p7"6 @# %p7K?Y@7?@@K?@ @Ku:QKs:Y k?Ku:AKs:I k?k?7k>k>k>k>47?Q4# &77?Q4 # &7 BK>K>K>K>K>k?#!7K>@X @@7?k?7k?9k?1k?)k?!+`H?0K?9 JK?1K?)K?!K?K?k?#0-7k?K?7K?Y@7?@k?7+`H6x#0-77K?Y@7?k?k?k?@@k?ok?9k?1k?)+H6 @4"# +7+H! < "+h 4K?9 Z +H3 ` *K?9K?1K?)# )P7Z+H4  *K?9K?1K?)# )P7 @+H# 4|K?Y@O?@@74k?@7?@ @@  4( "@@@@Ka?4! <4?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? /usr/lib/dld.slcrt0: errno: ERROR couldn't open ERROR reading ERROR bad magic number/system id for ERROR bad hpux aux header for ERROR: mmap failed for dld (text) (bss) (data)? crt0: errno: ERROR: mmap failed for TSD tsdbbTbbbbbbbbbbbbbbbbbbbbbbbdbbbbbbbbbbbbbbbbbbTbbbbtbb NRPE - Nagios Remote Plugin Executor Copyright (c) 1999-2003 Ethan Galstad (nagios@nagios.org) Version: %s Last Modified: %s License: GPL with exemptions (-l for more info) *************************************************************** ** POSSIBLE SECURITY RISK - COMMAND ARGUMENTS ARE SUPPORTED! ** ** Read the NRPE SECURITY file for more information ** Usage: nrpe -c Options: = Name of config file to use = One of the following two operating modes: -i = Run as a service under inetd or xinetd -d = Run as a standalone daemon Notes: This program is designed to process requests from the check_nrpe plugin on the host(s) running Nagios. It can run as a service under inetd or xinetd (read the docs for info on this), or as a standalone daemon. Once a request is received from an authorized host, NRPE will execute the command/plugin (as defined in the config file) and return the plugin output and return code to the check_nrpe plugin. nrpe/Config file '%s' contained errors, bailing out.../dev/nullrUnable to open config file '%s' for reading =No variable name specified in config file '%s' - Line %d No variable value specified in config file '%s' - Line %d include_dirincludeinclude_fileserver_portInvalid port number specified in config file '%s' - Line %d server_addressallowed_hostsAllowed hosts list too long in config file '%s' - Line %d command[[]Invalid command specified in config file '%s' - Line %d debugnrpe_usernrpe_groupdont_blame_nrpecommand_timeoutInvalid command_timeout specified in config file '%s' - Line %d Unknown option specified in config file '%s' - Line %d Could not open config directory '%s' for reading. .cfgAdded command[%s]=%s Network server socket failure (%d: %s)Could not set reuse address option on socket! Server address is not a valid IP address Network server bind failure (%d: %s) Network server listen failure (%d: %s) Starting up daemonWarning: Daemon is configured to accept command arguments from clients!Listening for connections on port %d Allowing connections from: %s Network server accept failure (%d: %s)Error: Network server getpeername() failure (%d: %s)Connection from %s port %dHost %s is not allowed to talk to us!Host address checks out okConnection from %s closed.TerminatingHandling the connection...Could not read request from client, bailing out...Data packet from client was too short, bailing out...Client request was invalid, bailing out...Host is asking for command '%s' to be run..._NRPE_CHECKResponse: %s%sRunning command: %sCommand completed with return code %d and output: %sBad return code for [%s]: %dReturn Code: %d, Output: %s,NRPE: Call to popen() failed 0123456789Warning: Could not get group entry for '%s'Warning: Could not set effective GID=%dWarning: Could not get passwd entry for '%s'Warning: Unable to change supplementary groups using initgroups()Warning: Possibly root user failed dropping privileges with initgroups()Warning: Could not set effective UID=%dError: NRPE daemon cannot be run as user/group root!Error: Request packet had invalid CRC32.Error: Request packet type/version was invalid!Error: Request contained no query!Error: Request contained illegal metachars!Error: Request contained command arguments, but argument option is not enabled!!Error: Memory allocation failedError: Request contained an empty command argument|`&><'"\[]{}$ARG@R@/dev/urandomrInvalid host name '%s' Cannot map "%s" to protocol number udpSocket creation failed Connection refused by host Timeout while attempting connection Network is unreachable Connection refused or timed out This program is released under the GPL (see below) with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @X     !!!!"" $@$D$$) @)) @*H*d*h********+++$+(+D+H+d+h++++++++,,,$,(,@,D- -$-0-4-P-T//000000012h2l222222248::@0AB\0BxC0C4CDJ|JPT PXQQQLQPQRVWW,WZ8Z<ZZ]]^H^Laacc ccddeef<fhi@mmnnoopqr$r(s@st ttttxttttuuuuuuuuuuw  * * 2 2 `: 0@ B` C BJ Q Q <V W0 0Z ] a d f@ h n o p sD s\ @r@z0.0.0.0nrpe.cfg2.009-08-2003%s/%s%sNRPE v%s2.0NRPE: Command '%s' not definedNRPE: Command timed out after %d seconds NRPE: Unable to read output NRPE: Call to fork() failed c:nidhl@@HP92453-02A.11.00 HP-UX SYMBOLIC DEBUGGER (END.O ILP32) $Revision: 75.04 $< "tcp@@ sts\D03C3R h*0R$B`R<:RTDHdWH3QQ:\RRl3ZoWh:,:dd324 @A3D`nW3xafp:DW3W`:Dx@D30if@DfWxh*i(3`3H22WpD:tQQ@CJ:C]4fXCW0*QVsD@ @ @ @ 8d@#?4#=48:4H:}:@:@AB\aA(BPBxC0BC$$C4CC@CKDJ| DJtJPTaJPHPXQPdPQQL Q(QD QPQ Q\Q(RV 8RVhWW, WW$WZ8 XZ,Z<Z ZHZZ] Z]]^H ]^8^La!^`a"ac!iacc c!c,ccd!cdde!de$ef<"ff0Ofh"1fhi@m"^i\mmn"~mnno"no|op"op/qr$"q rUr(s@"r4s8st (ssttt)-t(thtxt)]tttt*tttu+%tuuu+Xuu<48cc s@!su"48cHc s@!Blsu"B h     "[#*C %!<"h#$%&'%(>)[*t+,-G.`/B0W12/3G4]5/678!9:;Q D<48 48: @ ؀A B=@ @ ` @K@ЀM F=h[#*C%<h%>tG`BW/]/!Q : :@ &܀ @/` @4` @@2@?@KĀ@SȀ@\ }h [ *   C%h%>tG`BW ]!!"#$Q a%A AB\ q܀&` @4 j @y T @~@ @ 79:;h<=>?@A[B*CDEFCGHI%JhKLMtNOPGQ`RBSWTU]V!WXYQ ZBx BxC0 ؀ ܀[ @Ȁ fhijhklmno[p*qrstCuvw%xhyz{G|`}B~W]! Q (C4"C4C  ܀' @Ȁ+ *$h[*C%hG`BW]!Q  D DJ|@ x  @'Q@, @1 @4 @9 @@ ` ^@H`@X-@\ NKhC%hG` B W  ] !Q aJ JPT4 @sߐ  @ߔ@ߘ ~@㤠 ~@ @ ` @@縀` @@︀` @@@ @ @1 @ acdehfghijklCmno%phqrs`tBuv]w!xyzQ {PX PXQ H܀|` @@?Ȁ@Ȁ Ch`B]!Q Q QQL   Ch`B]!Q QP QPQ @ Ȁ  @ +̀   Ch`B]!Q 85R RV B   PЀ-+ Ԁ0. W 1܀-3@X-@ _ @  @ ` @@@B` @F @ fH @/L@ i @ tȠ3@ ̠3 7(C h!"`#B$]%&'Q k(W WW,  ) +m-h./01234C567h89`:B;]<=>Q ?W WZ8 ؀ ܀@@ /@ Ġ. E @ Ȁ p @ ̀ ]_`abcdefCghihjk`lBm]nopQ qZ< Z<Zr@ Ƞ/@ ̠. {}~Ch`B]Q Z Z] ~  ܀@ @sĠ  @ Ȁ@ Ch`B]Q ] ]^H !܀@ ҀԀh`B]Q !^L ^La!$  !2؀2܀@?@!@ @!I  @!S̀      h`B]Q !i)a ac % ؀& '` @,@!{Ȁ.@! @! A+C"DEFGHIJKhLM`NBO]PQR!S !TUVhWXYZ[\]^_`a"b[cd#ef*ghijklmCnopqrs%t<uhvwxyz%{>|[}t~G`BW/G]/!!`    !@؀!Q !c c c@! @! @! @! h[#*C%<h%>tG`BW/]/!!Q !c cd!  ܀ŀ@! @! @! πрh[*C%h%>tG`BW]!!Q !d de!  ܀ @/@ @" h  [ *  C%htG`BW]! !!Q "-"e ef< "Ԁ'"" ( "'܀,*#@ &/($)*h+,-./[0*1234C567%8h9:;G<`=B>W?@]A!B!CQ "1ZDf fh "<ЀR "ԀUS"" V"'܀RXE@"B   @"K_ * @"NĀb@ f\hOijhklmno[p*qrsCtuv%whxyzG{`|B}W~]!!Q "^i@ i@m ,؀ "k܀@ @"n @"s @!` ? @"u? @"{Ȁ hC%hG`BW]!!Q "~m mn ܀@ @" ݀߀hC%h`B]!!Q "n no "Ԁ "؀" @" @" @"s      Ch`B]!!Q " o op W  "Ԁ "؀ "  @" @" @"s @ tĠ3@"Ƞ3 023456789C:;<h=>`?B@A]B!C !DQ "6Eq-qr$ "؀22 "܀53F@"2@"Ā2K@" R= Y8[/\]^_`abCcdehfg`hBij]k!l!mQ "nr( r(s@o ~XUCh`B]H" ""  "@؀o#$Y%$Y&h$Y"&'''''(0'("#$Y%$Y&h$Y&''''"#$Y%$Y&'''"Q(s st ( ( ( ( ) @)  €#$Y%$Y&'''""Q)-t ttt)9 )= )A )E )I )M @)Y рӀ#$Y%$Y'''""Q)]tx txt #$Y%$Y''")j""Q*t tt+ + +ܠۀ #$Y%$Y'')j""Q+%t tu\ +< +ܠۀ   #$Y%$Y')j""Q+Xu uu@ !##$$Y%'&)j'"()l7?H P Y@a@j s!}      ڠ    '71;8CHS Zb `  @$ B D F` @I K@M@O`  R `  V ` Z@@\`X ^@T `  b dfh ` @l @n@ pk rtޠv`? z  |~  2x:pB`I@ P  V \@   @  @ (    2  >EN @   `  ]n ` @   ˠ     ` @ $ +  25 =3 @DM@@V@b m v     Ġ  =3 @ޠM@@V@    @    @B = K= @Tw@  ! # % ' ) +` -@ / 1 3 5 7 9 ; @@=@?A`C/ F  J L H NP  R - SU@ XY Z h o ^`@  D@ M e fXd hj`_l`tb@n{\ pW@rt``  w >y v`{` }@   `  !L@@T@@\@@@d@@l@@t@@|@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@&@@-@@4@@@;@@BQ` k v  ` @       ` @         &  1  <`  G@  R  ]  h  s   ~      `  @              `  @ !  #  %  ' # ) . + 9 - D` / N@ 1 X 3 b 5 l 7 v 9  ;  = ` ? @ A  C  E G I K M ` O @ Q S  UW !Y 0[` ]!@ ?  K a W@_c d!@e l!@g t!@i |@!@k !@m !@o !@q @!@s !@u !@w !@y @!@{ !@} !@ !@ @!@ !@ !@ !@ @!@ !@  !@ !@  @!@  !@ *!@ 7!@ D@!@ Q!@ Y!@ a!@ g@!@ o!@ w!@ } @ @ @  @  @  @ @ @  @  @  @ @ @  @  @  @ @ @  @  @  @ @ @  @  @  @ !@ @ ( @ / @ 6 @ <@ @ C @ O W` @ `   ?  K  W@ a  l  w        `  @          `  @   # - 7 A K ` U @ _ !i #s %} ' ) + ` - @ / 1 3 5 7 9 ; ` = @ ? A C! E, G7 IB KM ` MX @ Oc Qs S U W Y [` ]@ _ a c e g i k!` m,@ o7 qB sM uV w_ yj {u` }@        ` @        %` 0@ ;  F Q \ g r }` @        ` @        %` /@ 9  C M W a j s` }@  C@       d`  l@  t  |          `  @              `  @              `  *@  7  D ! Q # Y % a ' g ) o` + w@ - } /  1  3  5  7  9 ` ; @ =  ?  A  C  E  G  I ` K @ M  O  Q S  U  W ! Y (` [ /@ ] 6 _ < a c e g\ i k`  n  r t v p w m y { h }  $ (  5@4   a  `= E M p  X `c  {   `  % %  %  $   $  &ߠ @  @   "     1  @; E  O  a  @Z @  c@ l t  `     ` @    ۠ `     p  h ` %@ . 9  @D R@ $X @  %@` i(o@ & X @  *u           !  #  %  '  ) +  -   / 1 3 5 7` 9@ ;  = ? A@ C` %@ F+  H1 J L7 N       V@ `  Xi W Zr V \y U ^ T ` S b`. d@/ f R h Q j l` n   V `` t@ s v r x q z | ~ Q 3 Y3  @` ` `   `. /   `& P @1 02  2 ' %& /  9  @  K  R, \ g` q@3 z 3  3 + & p ` P) @(  ' &  @ R   4   @ 4  : ` @  :   . 8  ?      u ` @         ` @      Р      `  @          @  ! "  $ &` (   , !@ * - .4 + 0 2`; 4    9 j` : q@. ;x 8 = 7 ? A C`  F@ H0 J  L' N P@ɠ R   V  U W Y [` ]@ _ a c e! g+ ir y `  mP o @ q s u w y `Ϡ {ݠ } `  `   !     !   0 @ `  7 0)@+ ` @ 04@8 0@@ `  0L@( 0[@ 0j@  0z@  0@  0@ 0@ 0@ 0@ 0@ 0@ 0@ 0@ ` @ 0@! 0@ ` p  p  Р ` @ @ @ >     0!b@  0"S@ `  0#@) 0#@ 0#@ #I#P7?H P #X #b Y@a@j s }  #m#z# # ### # # # # $ $ $ $, $; $I $Q $  $ $    $ $  $ $ $ $͠ $ՠ  $ݠ $ $ % %  ڠ %   %       %& %,  ' <1 ; =C H %5 %> S %G 4%NZb %U %\ %a%h%n%u %|%% % >% ;% 5%ՠ %ݠ % % % & & & & &" &( &/ `  a   c  e  g i &5 j` @ l  n@ p@ r&= t&B &H ` @ y @ {@ } x  ޠ &N &W &\ &b . `?      & & 0&@ (    2  > E N @   `  ] n ` @    ˠ &ڠ  & &  '  '  'G 'P  '[  'd  'l  'u  1         .  @ X  h o  @  D@ M X  `_ `t @ {  @ ``   > ``  @     `  !L@@T@@!\@@@#d@@%l@@'t@@)|@@@+@@-@@/@@1@@@3@@5@@7@@9@@@;@@=@@?@@A@@@C@@E@@G@@I@@@K@@M @@O@@Q@@@S@@U&@@W-@@Y4@@@[;@@]_BaQc` k ev g i` k@ m o q s u w y` {@ }        &  1  <`  G@  R  ]  h  s  ~    `  @              `  @        #  .  9  D`  N@  X  b  l  v      `  @          `  @     ! 0`  @ ?  K  W@ d @ l @ t @ |@ @  @ @ @ @ @ @ @ @ @ @ @  @  @  @ @ @ @ @ @ @ @  @ @  @ @  @! * @# 7 @% D@ @' Q @) Y @+ a @- g@ @/ o @1 w @3 } @5 @ @7  @9  @;  @= @ @?  @A  @C  @E @ @G  @I  @K  @M @ @O  @Q  @S  @U @ @W  @Y  @[  @] !@ @_ ( @a / @c 6 @e <@ @g C @ik Om Wo` @q ` u  ?  K y W@w{ a } l  w        `  @          `  @   # - 7 A K ` U @ _ i s }    `  @        `  @   ! , 7 B M ` X @ c s     ` @       !` ,@ 7 B M V _ j u`  @         ` @    ! # % '%` )0@ +; -F /Q 1\ 3g 5r 7}` 9@ ; = ? A C E G` I@ K M O Q S U W%` Y/@ [9 ]C _M aW ca ej gs` i}@ k Cs@moqs  u d` w l@ y t { | }         `  @              `  @              `  *@  7  D  Q  Y  a  g  o`  w@  }            `  @              `  @           !  (`  /@  6  < ' d` tp     $( 5@ 7   a `=EMp<" X `c  ${# &(*',` . % ,% 2% 4$06$8:&ߠ"( @ @ @ C E "B FH    K1J MO@;QE 5 = 6 UW@DY($[ O  a] ^`@Zb@ e c@ l htg jl`n  q s u` w@ y { }۠([`    p h`%@ . 9 @D(jR@$X@%@`i(o@>&X@*u ,(z(*(%@*`  (*(*(*+(Ӡ0)@ @  )@  0)@  )o ) )) ) )@@@)@@)@@)@@)@@@)@@) )@@)@@@*@@* @@* * *"` **@ *2 *: *B *J *R *Z *b` *j@  *q  *x * * * * *` *@ * *  *"0*@ 0*@ 0*@ @ + 0+E@Ԡ- : K3@ " $ [ ? V Yf.)6'0g; 3!"+#_$U% &T' (π)**+,t-b.9/]0$123475:67?89&:#;W<0W=PWFX4H_4La4dc4d4e4f4g4h5l5n5,o5@p5Tq5hr5|v5w5y5{5|5}5~566$686L6`6t666666777@7P7l7777777888@8X8`88888888999909D9T9d9t999999:`Q:`R;STUNV<WրXJY7Z@[(\i]^&_߀`5a4bcd6ehf4gh2i`jYkUlЀm0n+opfq:rs%tuNvw?xy'z${ |0 }P ::;; ;(;, ;H#;T$;d%;h&;t';x(;+;,;-;.;2;3;4;5<9<$;<@< a>b>0e><f>Xg>th>i>j>l>o>p>q? r?t?(w?4x?Pz?l{?}?~??@@@$@D@P@p@x@@`@`<OE-ma>QÀ7i5a[VӀ2,Ȁ;&yJ)%0PA(A,A@AHAdAlAAABBBB B$B<BL`؀׀BP`ـ=%PIJsJtMj6b\W]Ӏ<€'3zK+&݀0݀P݀BBBBBBBBCC `C$`>4 R  ] y .NNk7 cX =ۀ(4{L, '!#0$P*C@CTClCtC`.C`/?0:12S34^567|89:O;l<8=%>d?]@A>BC)D5E|FMG.H(IJ0KPN DDDDEE(E0EXEpEEE"E#E%E&E'E+F ,F(-F`1Fp2F3F7F;F<F@G AG$CG<DGHEGhIGLGMGNGOGPGLGTGUGXGYH\H_HbHPdH`hHdkHtlH|nHqHtHvHyH|H}II<IpItIIIIIIJJJJ0J@IJXJ\Jt`hJt`iAj?klUmn_opqrXsmt9u&vewbx~y?z{*|C}~S0)0PJJJJJJJKK K8K@ KLKdKhK"K#K$K%K&K$K.L2L3L 6L@8L`9L<L=L?LDLELGLHMKMLMNM0TM<UM\VM`YMxZM]M^MaMbMeNfNgN@hN\jNxmN|pNrNxNyNzN{N|NzOO,OLOhO|OOOOOOOOOOPPP(PH`PH`BD[`fn:(fc+T2*0PPdPPPPPP`؀P`GJago;gg ,Y3+À0ÀPÀQ(Q4QD`̀QD`̀HSbhp<h -]5,Ҁ0Ҁ PҀ Q\QhQpQ|QQQ`ހQ`߀NYcۀiqAi  !."#^$7%-&'0(P7RRRRRRRSSS0S@SP SX St Sx SSSSSSSS"T#T&T,)TH+TP,Tl/Tp1T6T7T:T=T>T@UCUGU@JUPLU`SUtVUYU\U_U`UcUdUgUhUiV jV nVDoVTrVlsVvVwV{VV`UV`VOW_XYdZ[\]j^r_B`jabc?d_e.fg0hPmW`nW$`oXpiqrestuvkwsxCykz{|@}`~/0PXXXXXHX\XdXtXXXXXXY$Y8Y@YPYpYYYYYYYZ Z(`ԀZ,`ՀYofltDlBa0ۀ0ۀPۀZHZPZXZhZxZZZ`Z`cugmHmCb10PZZZ[[ [8[@[`[x [ [ [[[[[\\\(\@&\H*\h+\,\-\2\4\5\6\7\8\9]:](;]@=]H>]p?]4]E]`EрF]`Ffh nInLd2K0KPKN]O]Q]R^S^,U^4`UV^8`Vii!toMk3[0[P[^^`_^da^hc^e^g^i^j^k^l_n_0r_<u_pv_w_x_|_}_`0`h`|```aaLa`eada`a`lj"ypXl6 !0"P+aaaaabbbb,b0bTbTbTb`bdbdbpbtbtbbbbbbbbbbbbbbbbbbbbbcc `6c`7o89:k;t<=I>}?q@ABYCnD7E`8FG H:JK LKM3NO@P"Q$R[S?TUVV WYXfYZ[\.])^6_`ab'c0degf;g3hi+j_kUl mTn oπp*qrsttbu9v]w$xyz{7|:}~?&#(0(P(,c,-c8.cH/cP0c`1cp3c/c5c-c8c`89c`9;N<րJ7@(i&߀546h42`YUЀ0+f:%N?'=0=P=BcDcEd Fd DdXIdt`IπJd`J<OE-ma>QÀ7i5a[VӀ2,Ȁ;&yJ)N0NPN^d_e`e ae fe4heHieXjehiele`lme`m=%P I J s  JtMj6b\W]Ӏ<€'3z K!+"q#0q$Pq/tfvf,`v2wf0`w3>4456R78]9y:;.<N=>?N@kA7B CcDXE F=GۀH(I4J{KLL,M{N0{OP{\fffffg gg,g4gXgpggggghh h(hLhLh`hdhdhxh|h|hhhhh`gh`h?i:jkSlm^nop|qrsOtlu8v%wdx]yz>{|)}5~|M.0Pi\idititiiiiiijj<jDjDjjjkTkkkkll l l<lDlllllmmmmmmm, m0 m0 m< mD mdmhmhmtm|mmmm`m`A?U_Xm9&eb~?*CS00P!m"n #n$nl&n!n)n`)À*n`*BD[`fn:(fc+T2.0.P./n0n1n4n7n:o$;o,>o0?o@4oPCodFop`FGo|`GGJago;gg ,Y3K0KPKLoMoNoSoUoXo[p^p4_pH`pXaplbppcpgphpkplpXpppsp`stp`tHSb !"h#p$<%h&' (-)*]+5,y.0y/Py8|q }q,~q4q>>/usr/include/sys/_inttypes.hint16_tuint16_tint32_tuint32_tint64_tuint64_tintmax_tuintmax_tintptr_tuintptr_t/usr/include/sys/types.hdev_tino_tmode_tnlink_tfpos_toff_tblkcnt_tpid_tgid_tuid_tssize_t__site_t__cnode_ttime_tsize_tclock_t__daddr_t__caddr_t__swblk_tcaddr_tid_tuseconds_trlim_tu_shortu_int/usr/include/machine/vmtypes.hr_physadrval_quadlbl_sflbl_sslbl_slbl_splbl_rplabel_tlk_padlk_flagslk_namelkinfo/usr/include/sys/_fd_macros.h__fd_maskfds_bitsfd_set/usr/include/stdio.h__fileH__fileL__flag__base__ptr__cntFILE__unused__smbuf__newbase__bufendp__va_listva_list/usr/include/stdlib.hremquotdiv_tldiv_t/usr/include/sys/_wchar_t.hwchar_t/usr/include/sys/wait.h/usr/include/sys/sigevent.h__sival_ptr__svi_int__svi_int_ssigvalsigval_tpthread_attr_t__sigev_reserved__sigev_notify_attributes__sigev_notify_function__sigev_value__sigev_signo__sigev_notifysigevent/usr/include/sys/time.htm_isdsttm_ydaytm_wdaytm_yeartm_montm_mdaytm_hourtm_mintm_sectmtv_nsectv_sectimespecit_valueit_intervalitimerspecRTTIMER1RTTIMER0CLOCK_PROFILECLOCK_VIRTUALCLOCK_REALTIMECLOCK_INVALID__clockid_tclockid_ttimer_ttv_usectimevalitimervaltz_dsttimetz_minuteswesttimezonelohi__cycles/usr/include/sys/_rlimit_body.hrlim_maxrlim_currlimit/usr/include/sys/resource.hru_nivcswru_nvcswru_nsignalsru_msgrcvru_msgsndru_iochru_oublockru_inblockru_nswapru_majfltru_minfltru_isrssru_idrssru_ixrssru_maxrssru_stimeru_utimerusage/usr/include/sys/siginfo.h__pad__dev_id__lockpage__addr__gfault__band__fd__file__fault__status__SIGCLD__uid__kill__pdata__pid__proc__datasi_valuesi_errnosi_codesi_signo__siginfosiginfo_t/usr/include/sys/newsig.hsigset__sigset_tsigset_t/usr/include/machine/save_state.hss_fp31ss_fp30ss_fp29ss_fp28ss_fp27ss_fp26ss_fp25ss_fp24ss_fp23ss_fp22ss_fp21ss_fp20ss_fp19ss_fp18ss_fp17ss_fp16ss_fp15ss_fp14ss_fp13ss_fp12ss_fp11ss_fp10ss_fp9ss_fp8ss_fp7ss_fp6ss_fp5ss_fp4ss_fp3ss_fp2ss_fp1ss_fp0__fp_dbl_blockfp_dbl_block_tss_fp31_loss_fp31_hiss_fp30_loss_fp30_hiss_fp29_loss_fp29_hiss_fp28_loss_fp28_hiss_fp27_loss_fp27_hiss_fp26_loss_fp26_hiss_fp25_loss_fp25_hiss_fp24_loss_fp24_hiss_fp23_loss_fp23_hiss_fp22_loss_fp22_hiss_fp21_loss_fp21_hiss_fp20_loss_fp20_hiss_fp19_loss_fp19_hiss_fp18_loss_fp18_hiss_fp17_loss_fp17_hiss_fp16_loss_fp16_hiss_fp15_loss_fp15_hiss_fp14_loss_fp14_hiss_fp13_loss_fp13_hiss_fp12_loss_fp12_hiss_fp11_loss_fp11_hiss_fp10_loss_fp10_hiss_fp9_loss_fp9_hiss_fp8_loss_fp8_hiss_fp7_loss_fp7_hiss_fp6_loss_fp6_hiss_fp5_loss_fp5_hiss_fp4_loss_fp4_hiss_fpexcept7ss_fpexcept6ss_fpexcept5ss_fpexcept4ss_fpexcept3ss_fpexcept2ss_fpexcept1ss_fpstat__fp_int_blockfp_int_block_tss_newcksumss_oldcksumss_reserved2ss_cr27ss_cr26ss_cr25ss_cr24ss_cr13ss_cr12ss_cr10ss_cr9ss_cr8ss_cr0ss_sr7ss_sr6ss_sr5ss_sr3ss_sr2ss_sr1ss_sr0ss_sr4ss_cpustatess_cr22ss_cr21ss_cr20ss_cr19ss_cr15ss_pcsq_tailss_pcoq_tailss_pcsq_headss_pcoq_headss_cr11ss_gr31ss_spss_ret1ss_ret0ss_dpss_arg0ss_arg1ss_arg2ss_arg3ss_gr22ss_gr21ss_gr20ss_gr19ss_gr18ss_gr17ss_gr16ss_gr15ss_gr14ss_gr13ss_gr12ss_gr11ss_gr10ss_gr9ss_gr8ss_gr7ss_gr6ss_gr5ss_gr4ss_gr3ss_rpss_gr1ss_reserved__reg64__reg64_tss_cr27_loss_cr27_hiss_cr26_loss_cr26_hiss_cr25_loss_cr25_hiss_cr24_loss_cr24_hiss_cr13_loss_cr13_hiss_cr12_loss_cr12_hiss_cr10_loss_cr10_hiss_cr9_loss_cr9_hiss_cr8_loss_cr8_hiss_cr0_loss_cr0_hiss_sr7_loss_sr7_hiss_sr6_loss_sr6_hiss_sr5_loss_sr5_hiss_sr3_loss_sr3_hiss_sr2_loss_sr2_hiss_sr1_loss_sr1_hiss_sr0_loss_sr0_hiss_sr4_loss_sr4_hiss_cpustate_loss_cpustate_hiss_cr22_loss_cr22_hiss_cr21_loss_cr21_hiss_cr20_loss_cr20_hiss_cr19_loss_cr19_hiss_cr15_loss_cr15_hiss_pcsq_tail_loss_pcsq_tail_hiss_pcoq_tail_loss_pcoq_tail_hiss_pcsq_head_loss_pcsq_head_hiss_pcoq_head_loss_pcoq_head_hiss_cr11_loss_cr11_hiss_gr31_loss_gr31_hiss_sp_loss_sp_hiss_ret1_loss_ret1_hiss_ret0_loss_ret0_hiss_dp_loss_dp_hiss_arg0_loss_arg0_hiss_arg1_loss_arg1_hiss_arg2_loss_arg2_hiss_arg3_loss_arg3_hiss_gr22_loss_gr22_hiss_gr21_loss_gr21_hiss_gr20_loss_gr20_hiss_gr19_loss_gr19_hiss_gr18_loss_gr18_hiss_gr17_loss_gr17_hiss_gr16_loss_gr16_hiss_gr15_loss_gr15_hiss_gr14_loss_gr14_hiss_gr13_loss_gr13_hiss_gr12_loss_gr12_hiss_gr11_loss_gr11_hiss_gr10_loss_gr10_hiss_gr9_loss_gr9_hiss_gr8_loss_gr8_hiss_gr7_loss_gr7_hiss_gr6_loss_gr6_hiss_gr5_loss_gr5_hiss_gr4_loss_gr4_hiss_gr3_loss_gr3_hiss_rp_loss_rp_hiss_gr1_loss_gr1_hi__reg32__reg32_tss_mpsfu_ovfloss_mpsfu_low__ss_narrow__ss_narrow_tss_32ss_64ss_widess_xorfpintfpdblss_fpblockss_padss_narrowss_flags__save_statesave_state_tss_size__stackstack_tmcontext_t__uc_stack__uc_sigmask__ucontext__uc_link__sub_ctxtuc_subcontextuc_reserved_flagsuc_created_by_getcontextuc_sparesuc_mcontextucontext_t/usr/include/sys/signal.hsa_flagssa_mask__sa_handler__sa_sigaction__handlersigactionpthread_tss_onstacksigstacksv_flagssv_masksv_handlersigvec/usr/include/machine/frame.hfm_pspfm_epfm_clupfm_slfm_crpfm_erpfm_esr4fm_edpframe_markersm_argsm_rval2sm_rval1sm_errorsm_eosyssm_syscall_actionsm_omasksm_onstacksm_syscallsiglocal_miscsl_sssl_miscsiglocalsl_sisl_ucsiglocalxsi__paddingsc__xsiP_ALLP_CIDP_GIDP_UIDP_SIDP_PGIDP_PIDidtype_tkeepcostfordblksuordblksfsmblksusmblkshblkhdhblkssmblksordblksarenamallinfoword4word3word2word1long_double/usr/include/pwd.hpw_audflgpw_audidpw_shellpw_dirpw_gecospw_commentpw_agepw_gidpw_uidpw_passwdpw_namepasswds_passwd/usr/include/errno.h/usr/include/sys/errno.h../common/config.hu_int32_t/usr/include/string.h/usr/include/strings.h/usr/include/utime.hmodtimeactimeutimbuf/usr/include/sys/unistd.h/usr/include/syslog.h/usr/include/sys/_stat_body.hst_spare4st_gidst_uidst_spareshortst_basemodest_realdevst_fstypest_netsitest_rcnodest_cnodest_netinost_netdevst_remotest_aclst_sysVaclst_padst_blocksst_blksizest_spare3st_ctimest_spare2st_mtimest_spare1st_atimest_sizest_rdevst_reserved2st_reserved1st_nlinkst_modest_inost_devstat/usr/include/sys/stat.h/usr/include/sys/_flock_body.h/usr/include/sys/fcntl.h/usr/include/time.hhrtime_t/usr/include/sys/ioctl.h/usr/include/sys/uio.hiov_leniov_baseiovec/usr/include/sys/socket.hsocklen_tmsg_accrightslenmsg_accrightsmsg_iovlenmsg_iovmsg_namelenmsg_namemsghdr/usr/include/netinet/in.hin_addr_ts_addrin_addr/usr/include/arpa/inet.h/usr/include/netdb.hh_addr_listh_lengthh_addrtypeh_aliasesh_namehostentn_netn_addrtypen_aliasesn_namenetents_protos_ports_aliasess_nameserventp_protop_aliasesp_nameprotoentr_numberr_aliasesr_namerpcent/usr/include/ctype.h/usr/include/grp.hgr_memgr_gidgr_passwdgr_namegroup/usr/include/sys/dirent.hd_named_namlend_reclend_inodirent__dd_unused__dd_buf__dd_bsize__dd_entno__dd_bbase__dd_size__dd_loc__dd_fd__dirdescDIR/usr/include/inttypes.h/usr/include/stddef.h/usr/include/wchar.hwint_twctype_t../common/common.hbufferresult_codecrc32_valuepacket_typepacket_versionpacket_structpacketnrpe.hcommand_structnextcommand_linecommand_namecommandutils.hmacro_argvconfig_fileserver_portserver_addresssocket_timeoutcommand_timeoutcommand_listnrpe_usernrpe_groupallow_argumentsshow_helpshow_licenseshow_versionuse_inetddebuguse_sslmain_MAIN_argvargcresultxallowed_hostsread_config_filefilenamefpinput_buffertemp_buffervarnamevarvaluelineread_config_dirdirnamedirpdirfileadd_commandnew_commandfind_commandtemp_commanderrnosa_datasa_familysockaddrsin_zerosin_addrsin_portsin_familysockaddr_inwait_for_connectionsmynamenptraddrrcsocknew_sdaddrlenconnecting_hostpidflaghandle_connectioncalculated_crc32receive_packetsend_packetbytes_to_sendbytes_to_recvraw_commandprocessed_commandearly_timeoutis_an_allowed_hosttemp_ptrsighandlersigfree_memorythis_commandnext_commandmy_systemoutput_lengthoutputtimeoutstatusfdbytes_readstart_timeend_timemy_system_sighandlerdrop_privilegesuseruidgidgrppwcheck_privilegesvalidate_requestpktpacket_crc32ptrcontains_nasty_metacharsstrprocess_macrosbuffer_lengthoutput_bufferin_macroarg_indexselected_macrooptargprocess_argumentsoptcharschave_modeutils.ccrc32_tablegenerate_crc32_tablecrcpolyijcalculate_crc32buffer_sizethis_charcurrent_indexrandomize_bufferseedmy_tcp_connectsdporthost_namemy_connectprotoservaddrhpptrp__SB_masksmy_inet_atoncpbasenpartsppstripindexsendalllenbufstotalbytesleftrecvallcurrent_timemy_strsepdelimstringpbeginendchdisplay_licenseend.c__sccsid__buffer_bufMax__d_pid/CLO/BUILD_ENV/usr/include/sys/_inttypes.hint8_tuint8_tintfast_tuintfast_tint_least8_tuint_least8_tint_fast8_tuint_fast8_tint_least16_tuint_least16_tint_fast16_tuint_fast16_tint_least32_tuint_least32_tint_fast32_tuint_fast32_tint_least64_tint_fast64_tuint_least64_tuint_fast64_tptr32_tptr64_t/CLO/BUILD_ENV/usr/include/sys/types.hmqd_tino32_tino64_tfpos32_tfpos64_tfsblkcnt32_tfsblkcnt64_tfsblkcnt_toff32_toff64_tfsfilcnt32_tfsfilcnt64_tfsfilcnt_tblkcnt32_tblkcnt64_tlwpid_ttid_tkey_t__ushortrlim32_trlim64_tsite_tu_charu_longuintushortubit8ubit16ubit32sbit8sbit16sbit32swblk_tdaddr_tcnode_t/CLO/BUILD_ENV/usr/include/machine/vmtypes.hpaddr_tpage_tpgcnt_tphyspfn_tiophyspfn_tpgaddr_tspace_tprot_tulong_tcnt_tcdno_tuse_tphysadrquadspu_tcpu_tlkinfo_tpl_taid_tsid_t/CLO/BUILD_ENV/usr/include/sys/_fd_macros.hfd_maskdir_off_t__dld_loc/CLO/BUILD_ENV/usr/include/sys/sigevent.hsigevent_t__SIGEV_THREAD__SIGEV_SIGNAL__SIGEV_NONE__sigev_types/CLO/BUILD_ENV/usr/include/sys/siginfo.hSI_MESGQSI_ASYNCIOSI_TIMERSI_USERSI_QUEUE__si_codes/CLO/BUILD_ENV/usr/include/sys/newsig.h/CLO/BUILD_ENV/usr/include/machine/save_state.hssflags_t__sub_ctxt_t/CLO/BUILD_ENV/usr/include/sys/signal.hsig_atomic_ttimestruc_t/CLO/BUILD_ENV/usr/include/machine/frame.hframe_marker_tsiglocal_misc_t__xsi_t/CLO/BUILD_ENV/usr/include/machine/sys/sigcontext.hsc_sfmsc_argssxslsc_ctxtsigcontext__rtc_d_trapfifthfourththirdsecondfirstoset__shldp__fp__shlib_funcptr__d_shl_get_a5_a4_a3_a2_a1_dld_offsetret__d_plt_calleh.h__EH_NOTIFY_CATCH__EH_NOTIFY_THROW__eh_notificationjb_ext_dpjb_rp_primejb_fr21jb_fr20jb_fr19jb_fr18jb_fr17jb_fr16jb_savejb_fr15jb_fr14jb_fr13jb_fr12jb_sr3jb_gr19jb_gr18jb_gr17jb_gr16jb_gr15jb_gr14jb_gr13jb_gr12jb_gr11jb_gr10jb_gr9jb_gr8jb_gr7jb_gr6jb_gr5jb_gr4jb_gr3jb_osjb_smjb_spjb_rplocal_jump_buffer__d_eh_catch_throw__d_eh_catch_catch__d_eh_suspend_ad__d_eh_breakeh_arg_flageh_argeh_type__d_eh_notify_callbacktgt_addr__eh_callback_fptr_end_