catalog/INDEX010064400000000000003000000013221000062002400130750ustar00rootsys00000000000000distribution layout_version 1.0 data_model_revision 2.40 uuid f62bfa98-454e-11d8-a2d6-0060b018bb39 mod_time 1073946644 create_time 1073946644 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 1073946644 create_time 1073946644 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 206763 title "NRPE" mod_time 1073946644 create_time 1073946644 state available catalog/dfiles/INDEX010064400000000000003000000003011000062002400143370ustar00rootsys00000000000000distribution layout_version 1.0 data_model_revision 2.40 uuid f62bfa98-454e-11d8-a2d6-0060b018bb39 mod_time 1073946644 create_time 1073946644 path_max 255 name_max 100 media sequence_number 1 catalog/dfiles/INFO010064400000000000003000000002121000062002400142240ustar00rootsys00000000000000control_file path INDEX size 193 mode 0444 mtime 1073946644 tag INDEX control_file path INFO size 198 mode 0444 mtime 1073946644 tag INFO catalog/NRPE/pfiles/INDEX010044400000000000003000000005561000062002400151310ustar00rootsys00000000000000vendor 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 1073946644 create_time 1073946644 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/INFO010044400000000000003000000002121000062002400150020ustar00rootsys00000000000000control_file path INDEX size 366 mode 0444 mtime 1073946644 tag INDEX control_file path INFO size 198 mode 0444 mtime 1073946644 tag INFO catalog/NRPE/NRPE/INDEX010044400000000000003000000002431000062002400144040ustar00rootsys00000000000000fileset tag NRPE data_model_revision 2.40 instance_id 1 control_directory NRPE size 206763 title "NRPE" mod_time 1073946644 create_time 1073946644 state available catalog/NRPE/NRPE/INFO010044400000000000003000000012011000062002400142630ustar00rootsys00000000000000control_file path INDEX size 163 mode 0444 mtime 1073946644 tag INDEX control_file path INFO size 701 mode 0444 mtime 1073946644 tag INFO file path /opt/nrpe/README type f size 6642 cksum 1138950880 mode 0555 uid 0 gid 0 owner root group root mtime 1073946625 file path /opt/nrpe/bin/check_nrpe type f size 82284 cksum 73657398 mode 0555 uid 0 gid 0 owner root group root mtime 1073946626 file path /opt/nrpe/bin/nrpe type f size 112036 cksum 831493566 mode 0555 uid 0 gid 0 owner root group root mtime 1073946626 file path /opt/nrpe/etc/nrpe.cfg type f size 4937 cksum 600722008 mode 0400 uid 0 gid 0 owner root group root mtime 1073946625 NRPE/NRPE/opt/nrpe/README010055500000000000000000000147621000062000100151720ustar00rootroot000037777777777*********** 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_nrpe010055500000000000000000002405541000062000200171070ustar00rootroot000037777777777@cAl@x|ttL+\(||dlGd:(>$0@p`  92453-07B11.13@  92453-07B11.097H@`HX"0LX 7HHtX!80%x0%xX ] = X 8jPpJPpX Hm`M`X In N X Xn N (>(p@`>(p@<>( p@P>(p@h>(&yH@H >('zH@H>((zh@h>(R@x,>H,,>I,/@,/@Y 0>$? p@ $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$ $GDB_DEBUG$ $GDB_SYMBOLS$ $GDB_STRINGS$0$08 0L@0@x0 @c0 @0  @0H  @! $0  @0  @0  @   D  U$@{ 4 @@&U$HH 0 0@0 @@ X0 P@0 \@0 p@0 @30 JP0 M0 N 0 N 0 @p0 @l0 @h080 @0 , @0 @ @0 L @0` @0t @ d @@ Pt; = @"  @ A; @"; =@|@@0@0@@x A! @"[ @" @" @#;  @"{0X0@0N$0,@ @#[ $#x 4@" H@# \ @ Pt# l> $k A$ t>x0$@ @'0 4@' @'0 H@' U 4(80 @ @0 P @0 d @0 x @0 @ U (P0 @0 @ ' U (h0 @0 @0 @ U ' 0B <BH H@ TA `A lA` xA E D C E E Ep El E\ E  E D B Dh  B ,C0 8D DC P@ \E hE t@x @ ? ? ?p ?4 ' U - U (, U  ( 0 A 8@2# U Lx' E U X, E ? E > >0 A d@-c0 @ |@20 @10 Q @3 U '0 @< U (0 Q @:; U -00 U @: U 0' U- U -H U ,,0 A@( '0 8@1 1 (1 (-` (( \1 L@x U l6 U x2 0G G J ,Hx  H4 F8 H <G\ F TG F( F F@ tFD xFH HFl lF `F PF F DH F0 U X6x I I I` 8I 0 U @40 A @6 U 4 U 60 U p2 U 82 U `2 U h2x U (2` U (4 U $40 U 86` U H:  U TP: U `0: U l 4H U x@< U <  U 4x U 4` U 6H0 A @<; =p0 @9 1 (1 (2 (2  (< (<8 (: (:8 (9 (6 (4 (3 = = = = = = = (=| 4=x @=t L=p X=p d= p= |=p0 @=s (=p  0 @ 0 @0 N$0@x0 @0 @x ' 4' ' l1 l1 1 `1 1 x1$` T1 1 1 1 1 L' ' ' ' H1 ,' $1 X' (' 1 1 1 81 1 ' ' ' 1 ' x1 1  ' 1 '0 A@('0 8@110 @03main__gcc_plt_call __text_start ___stack_zero __data_startcrt0.oPA-RISC 2.0 Assembler HP92453-03UX.11.01.10 (ROSE)../mapdld.c /CLO/Components/LINKER/Src/csu/CRT_DBG 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! -AcHPC HP92453-01 W.11.01.../maptsd.c /CLO/Components/LINKER/Src/csu/CRT_DBG 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! -Acset_tpL$0007_is_89_0L$0002L$0004L$0001 __map_dldL$0005__do_thread_initL$0008 DS$mapdlderrorC$14writestrlenitoa__exit S$17DD$itoa get_environopenreadlseekmmapclose_utssyssyserrorlwp_setprivatelwp_getprivate DS$maptsdC$2 S$11DD$itoa__set_tp__get_tp$global$$START$$ARGV_environ _fp_status _CPU_REVISION_CPU_KEYBITS_1 _FPU_MODEL_start $$dyncall __tool_init_mcount_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_ENDerrno__ismt_tepv_ktepv__islwp__cxperf_dld_hook __dld_loc__tdsize _thread_init_etext_endtaddrL$C0016L$C0015L$C0010L$C0014L$C0013L$C0012L$C0011L$C0056L$C0000L$C0020L$C0007L$C0006L$C0005L$C0004L$C0003L$C0002L$C0001L$C0024L$C0017L$C0023L$C0018L$C0019L$C0022L$C0021L$C0009L$C0055L$C0054L$C0008L$C0028L$C0029L$C0032L$C0033L$C0031L$C0053L$C0052L$C0030L$C0025L$C0027L$C0026 L$text0000L$text_end0000$CODE$puts show_help show_license show_versionquerysocket_timeoutprintf server_namesdoptargputcharuse_ssl server_port command_namealarmoptindatoisnprintfcalculate_crc32exitstrdupprocess_argumentsrandomize_buffergenerate_crc32_tablemy_tcp_connectsignaldisplay_licensestrncpysendallstrcatrecvallmemsetstrncatgetopt alarm_handler crc32_table __SB_masksisasciitime_isdigit my_connect my_inet_aton gethostbyname_islowersrandrandfclosefgetcfopenmemcpygetprotobyname _isxdigitsendrecvsleepmemcmpstrchrstrpbrkconnectsocket_isspace my_strsepstripL0L5L0L9L0L8L0L7L0L6L0L11L0L4L0L3L0L2L0L1L0L0L0F1L0L12L0L10L0F0dyncallUUX.11.01.06 (ROSE)noshlibs$$dyncall_external$$dyncall_external_20etextedataend_etext_edata_end __SYSTEM_ID _fp_status__tdsize`l7@7@7H6l7J7 M45l7N45 l 6L6LyL`0d/  H ) pOLhů;A8v˚vY;'Y;8 4L '-(KgVL!xry 4u RmTp,V!xT/}kthhv!xg6eQ0@֘6u- !x/P'6//] gyg@Y6 ƿ˚v8vhů;An bltD8rP.##744445 rנjb+h% 0+h% 8 (4Ц @Ц D(43 H?(ਃ 43 ` 7+4>7D7%7744z#0*74444@H@7D7%7#-7444+H8 @7D7%77+`H6P 24E74444#0 7@@@@ 7K?@ @@@@k?7k?#A0k? 7Y pk?4@4 @@K?K?7@4K? *@K? K? 7@@4K? rKa?H:@7?!#07 4@4@x7?!7?!7@4#!079 4@4Ka?@xH:K>@7? 44@B7?@B?7?B?@k?ok?7?"0'E' 86 P0.&40N 1N 7?9AE'E1!881N 0N 9!F'F9AE881N 1$N 1A'1a0 0 1$N 1DN9aJ'J2 9@9@2N1dN2 ' 8G1@' X1@ 2N1dN 2 ' 8G 'V1@ 9G4`1dN9%G'X:E1@ 'E887A`1dN'W3N:Et"1DN 8K7C`0 'E18 V!9eG1!6`8:G' F9eG1DN 1$N  'G9aH9GS9G' H9AE4` 'E'G'F6 # 4W`7=$ |6`6`= 37`!/K?YK?@O?k?ok)4`@54`< G>-( 44 _4+H6 0K>9K>QK>ik< *K>y4 ߟ444K>IKa $k?459@ 4 7+4: 4 _4X54K>a59k?4@4"`75K<@K4k>+k>4! k>+`H?0k>+H5 0g k>+4= k>+47 8k>Ka?49k? Ka?4:k? 4b c?Ka?4=K?k?+`43(k?1@ k?+44 !k?!k?)4 4_47=)4 4_4G=-+4: 4 _m4+4: 4 _=4+4: 4 _ 4u k?)+`H?@k?9k?A k?Ik?Q@k?Q+`Kqh% K>Ak?( k?49k?(k?q4: Hk?+`k> 4"Xk?yk>7>7>444? U7K@7?ςK>ك ( 4z7W56 267346?7B? C? (?7W4@ˀ@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4& "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4r "@@@@Ka?4!4! <4?@@k?7k?#A0k? 7Y k?4_4 @@K?K?7_4K? *@K? K? 7_4K? rKa?H:@7?!#07 4_-4@x7?!7?!7_4#!079 04_4Ka?_H:K>@7? 44@B7?@B?7?B?@k?ok?7?"0'E' 86 0.&40N 1N 7?9AE'E1!881N 0N 9!F'F9AE881N 1$N 1A'1a0 0 1$N 1DN9aJ'J2 9@9@2N1dN2 ' 8G1@' X1@ 2N1dN 2 ' 8G 'V1@ 9G4`1dN9%G'X:E1@ 'E887A`1dN'W3N:Et"1DN 8K7C`0 'E18 V!9eG1!6`8:G' F9eG1DN 1$N  'G9aH9GS9G' H9AE4` 'E'G'F6 # 4W`7=$ |6`6`= 37`!/K?YK?@O?k?7+`H60+ H4? 44477K?Y@7??K?Yk?4?k?474_4$+`7 h<8_E@eK?Y#0+7 @4: _E4%K?Y@z@@`@@K?@ @Ku>Ks>  k?Ku=Ks= k?Ku=1Ks=9 k?Ku?qKs?y k?Ku>1Ks>9 k?Ku?QKs?Y k?Ku=!Ks=) k?Ku?Ks?  k?Ku>Ks> k?k?7k?k?k?ak?ik?q@ xk?y+ӄ'C+H3 b'Hs b&+H3 b&ʌ$+H3 b$Hs b$ 8+H3 b Hs b +H3 b _%4@p@"b+Jy H_4_5I +`E+H: +H9 @4Hӄ#7/4+4XF_ZZ@Y4+g/44g/49 _7/%c7#k/Z@Yk/H `"pk?Q#A0!7Z Pk?YH `"I _4_5HH#A0a7Z !K?Y43J771YK79@k79#A0 7Z#A0G71d 7ZhG75d G7A#A0c?CdC7E 7Z77E_m@\K.K?aK?iK?qK?yK?K?@7/#A07Z8_@_HH}4X#A0_7ZM4#B7Z8_@4HH7?Y@771GYHH@(7?QeG_M4\@@G#B_7Z_4#B_7Z#B_7Z#B4,D_7Z8#B4_}7Z#B_57ZX#B_7Z#B_7Z#B_7Z8_=4#B_7Z#B_7Z#B_7Z`#B_}7Z#B_e7Z#B_M7Z0#B_57Z#B_7Z p_m4]Hs #B_7Z _-4#B_7Z #B_7Z @#B#"7Z _79 #B#"7Z _}79 #B_57Z _4O+ CKu>Ks> k?Ku>QKs>Y k?Ku>qKs>y k?Ku?!Ks?) k?Ku>Ks> k?Ku>!Ks>) k?Ku>Ks> k?k?4?7k?Y4 k?aHk?qFk?4k?k?k?!k?)k?1k?9k?Ak?Ik?Qk?ik?yCE@k?7/4#G7 _4j+R+Q+PKa?D+O+N+M+LKa?K+JZY_-7/$7?(4?@@jG 4?4?4?4?4?4?4?4?@h4?X4?H4?84?(4?4?4?4?4?4?4?4?4?j' 4?x4?h4?X4?H4?84?(4?4?4?4?pIi4?`@4?4?4?4?jG h4?X4?H4?j (4?i@ 4?@4?4?4?X@MZ_H%i Z Z_mHi ZZ_]Hi Ї[4?\K.K?K?K?!K?)K?1K?9K?AK?IK?QK?YK?aK?iK?qK?yK?K?@7/_H5i +H7 !"b+4G#4: _7 4 @b`5#?f`  J4 !4 _4c5 @H4 _@ X4 _4fa@+H3 ؎`>4+H3 `=+H3 `=+H3 `=4?4u6w @ @K?@ @+#Bk?H9 7Z _ 7_ 4@"d+`6v@44!4S4s @ 36_4!@4?`P4+`4!UӔ |6sX 3 t@ Ku=aKs=i k?Ku=Ks= k?Ku=Ks= k?Ku=Ks= k?Ku=Ks= k?Ku?1Ks?9 k?k?oF7?!k? #BEk?7Z 0#"k?,0-,0,_m79 P!8C_}ZZ_DZ_4`"b"6s `6 p.` . _@'2f 2N4c2N2'6s`e7?!K>K? ,0-K?K?,0,@O?_4Dk?"7@86 K?Y@7?Ku>Ks> k?Ku?aKs?i k?Ku>aKs>i k?Ku=QKs=Y k?Ku?AKs?I k?Ku>Ks> k?STk?7k?k?k?1Fk?9Ek?ADk?I7?g?Yk?!k?)4@Xg? :_%Z""K Z_%`_EZ!CZ4#"_=79 440Y_= p aZ7?_=4 `@4\K>K?1K?9K?AK?I@7?Ka?#BH44܂ @7Z @P#B#B47Z  #B7Z @_@5447Z #B_7Z 4#BY7Z _@4#BY7Z Ku=AKs=I k?Ku>Ks> k?Ku>Ks> k?Ku>Ks> k?Ku=Ks= k?k?Ka?7k?1k?9Mk?A7? Nk?iGk?Dk?k?Ik?Qk?Yk?ak?qk?y@cH`%jc s444`s$44 4 4 _Z H`$jc 3`# 4\_Z H`#c S` 4\H` H4ec s` 4??4? 03 Ec_%Z?4?4??4\s 7?) 4 5% 03K>K?1K?9K?AK?IK?QK?YK?aK?iK?qK?yK?K?@7?`! s6shZ@@E40@@4h44 4K>K?s  eEK>K?K?֔ s  tT] E4MK>K?K?s ֔ K?! Sֵ E S_uZ=4H` "c ^= 4_}Z=4 _}Z<}4\' 03':G'V# cm6?_Z;@} 03c` t04:4 034 c_Z:4-4k?o_C@xK?Y7? t 0@4` \ K?Y_K?Y@O?Ku>AKs>I k?k?4oGk? Fk?Ek?k?!`P4 XZ_E4     '4K?!K>K? K?K?@O?Ku=Ks= k?Ku=qKs=y k?k?7k?!Jk?1Hk?9GZk?A4Fk?I4k?Yk?)k?Q_aX4_7? `pKa?IX4 _Z C`@"e d X`PC K?Q\K>K?!K?)K?1K?9K?AK?IK?Y@7?I3v?E7?_ @K?K? j_=4_@ Ku=Ks= k?Ku?Ks? k?k?4ok?@` D t "` `st \Y_ 4z :7 \K?YK?@O? _Z#Bk?7Z(_7#B_7Z#B_7ZH#B_7Z#B_i7Zh#B_Q7Z#B_97Z@#B_!7Z#B_ 7Z@#B_7Z#B_7Z #B_7Z#B_7Z K?Y@7? B@ @? crt0: errno: DLD_PATH/usr/lib/dld.slERROR couldn't open ERROR reading ERROR bad magic number/system id for ERROR bad hpux aux header for (text) (bss) (data)? crt0: errno: tsdCHECK_NRPE: Error sending query to host.CHECK_NRPE: Error receiving data from daemon.CHECK_NRPE: Response packet had invalid CRC32.CHECK_NRPE: Invalid packet version received from server.CHECK_NRPE: No output returned from daemon.CHECK_NRPE: Invalid packet type received from server.CHECK_NRPE: Receive underflow - only %d bytes received (%d expected). CHECK_NRPE: Received 0 bytes from daemon. Check the remote server logs for error messages.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 commandwith the [command] option you are specifying here. Upon receipt of the[command] argument, the NRPE daemon will run the appropriate plugin command andsend the plugin output and return code back to *this* plugin. This allows youto execute plugins on remote hosts and 'fake' the results to make Nagios thinkthe plugin is being run locally.Incorrect command line arguments suppliedNRPE Plugin for NagiosCopyright (c) 1999-2003 Ethan Galstad (nagios@nagios.org)Version: %s 2.0Last Modified: %s 09-08-2003License: GPL with exemptions (-l for more info)@:H:c:a:t:p:nhl_NRPE_CHECK%s!CHECK_NRPE: Socket timeout after %d seconds. /dev/urandomr@R?tcpudpTimeout while attempting connectionConnection refused by hostNetwork is unreachableConnection refused or timed outSocket creation failedCannot map "%s" to protocol number Invalid host name '%s' This program is released under the GPL (see below) with the additionalexemption that compiling, linking, and/or using OpenSSL is allowed. This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details. You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (`  ,0044848tx!|8!!!!!","0"4"8"T"X"t"x""""""""###4#8#T#X#t#x##$d$h$t$x$$&&'''|''''''(,-`111122 2X23D334669 9::8::<<8<<=l=p=0 H ' ' 6, *1 2` $4 $6 : : < @B$Revision: 92453-07 linker linker crt0.o B.11.13 DBG 990903 $ERROR: mmap failed for dldERROR: mmap failed for TSD" '(8'64H2`:2<H:6x22x2'(h-0(: ,40,,6044x6`6H--H(P< -24`( 4'10@@|@@''1check_nrpe.c/home/benny/temp/nrpe-2.0/src/check_nrpe.cgcc2_compiled.int:t1=r1;-2147483648;2147483647;char:t2=r2;0;127;long int:t3=r3;-2147483648;2147483647;unsigned int:t4=r4;0000000000000;0037777777777;long unsigned int:t5=r5;0000000000000;0037777777777;long long int:t6=@s64;r6;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=@s64;r7;0000000000000;01777777777777777777777;short int:t8=@s16;r8;-32768;32767;short unsigned int:t9=@s16;r9;0;65535;signed char:t10=@s8;r10;-128;127;unsigned char:t11=@s8;r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;16;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=R3;8;0;complex double:t17=R4;16;0;complex long double:t18=R5;32;0;__builtin_va_list:t19=*20=20_Bool:t21=@s8;-16;__gnuc_va_list:t22=19int8_t:t23=2uint8_t:t24=11int16_t:t25=8uint16_t:t26=9int32_t:t27=1uint32_t:t28=4intfast_t:t29=1uintfast_t:t30=4int64_t:t31=6uint64_t:t32=7intmax_t:t33=31uintmax_t:t34=32intptr_t:t35=3uintptr_t:t36=5int_least8_t:t37=2uint_least8_t:t38=11int_fast8_t:t39=1uint_fast8_t:t40=4int_least16_t:t41=8uint_least16_t:t42=9int_fast16_t:t43=1uint_fast16_t:t44=4int_least32_t:t45=1uint_least32_t:t46=4int_fast32_t:t47=1uint_fast32_t:t48=4int_least64_t:t49=31int_fast64_t:t50=31uint_least64_t:t51=32uint_fast64_t:t52=32ptr32_t:t53=28mqd_t:t54=1dev_t:t55=27ino32_t:t56=28ino64_t:t57=32ino_t:t58=5mode_t:t59=26nlink_t:t60=26fpos32_t:t61=27fpos64_t:t62=31fpos_t:t63=3fsblkcnt32_t:t64=28fsblkcnt64_t:t65=32fsblkcnt_t:t66=5off32_t:t67=27off64_t:t68=31off_t:t69=3fsfilcnt32_t:t70=28fsfilcnt64_t:t71=32fsfilcnt_t:t72=5blkcnt32_t:t73=27blkcnt64_t:t74=31blkcnt_t:t75=3pid_t:t76=27lwpid_t:t77=27gid_t:t78=27uid_t:t79=27tid_t:t80=27ssize_t:t81=3__site_t:t82=26__cnode_t:t83=26time_t:t84=3size_t:t85=5clock_t:t86=28key_t:t87=27__ushort:t88=9__daddr_t:t89=27__caddr_t:t90=91=*2__swblk_t:t92=27caddr_t:t93=90id_t:t94=27useconds_t:t95=28rlim32_t:t96=28rlim64_t:t97=32rlim_t:t98=5site_t:t99=82u_char:t100=11u_short:t101=9u_int:t102=4u_long:t103=5uint:t104=4ushort:t105=9ubit8:t106=11ubit16:t107=9ubit32:t108=28sbit8:t109=2sbit16:t110=8sbit32:t111=27swblk_t:t112=92daddr_t:t113=89cnode_t:t114=83paddr_t:t115=36page_t:t116=35pgcnt_t:t117=27physpfn_t:t118=28iophyspfn_t:t119=36pgaddr_t:t120=36space_t:t121=28prot_t:t122=28ulong_t:t123=5cnt_t:t124=25cdno_t:t125=28use_t:t126=26_physadr:T127=s4r:128=ar129=r129;0000000000000;0037777777777;;0;0;35,0,32;;physadr:t130=131=*127_quad:T132=s8val:133=ar129;0;1;3,0,64;;quad:t134=132spu_t:t135=1cpu_t:t136=8label_t:T137=s160lbl_rp:27,0,32;lbl_sp:27,32,32;lbl_s:138=ar129;0;16;27,64,544;lbl_ss:139=ar129;0;0;27,608,32;lbl_sf:140=ar129;0;9;13,640,640;;label_t:t141=137lkinfo:T142=s16lk_name:91,0,32;lk_flags:1,32,32;lk_pad:133,64,64;;lkinfo_t:t143=142pl_t:t144=5dm_message:t145=91aid_t:t146=27sid_t:t147=76__fd_mask:t148=27fd_set:T149=s256fds_bits:150=ar129;0;63;3,0,2048;;fd_set:t151=149fd_mask:t152=148dir_off_t:t153=27FILE:t154=155=s16__cnt:1,0,32;__ptr:156=*11,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t157=158=s44__cnt:1,0,32;__ptr:156,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:156,128,32;__newbase:156,160,32;__smbuf:159=ar129;0;15;11,192,128;__unused:160=*20,320,32;;__va_list:t161=162=*13__not_va_list__:t163=162div_t:t164=165=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t166=167=s8quot:3,0,32;rem:3,32,32;;wchar_t:t168=4sigval:T169=u4__svi_int_s:170=s4__svi_int:1,0,32;;,0,32;__sival_ptr:160,0,32;;sigval_t:t171=169pthread_attr_t:t172=1sigevent:T173=s52__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:171,64,32;__sigev_notify_function:174=*175=f20,96,32;__sigev_notify_attributes:176=*172,128,32;__sigev_reserved:177=ar129;0;7;1,160,256;;sigevent_t:t178=173__sigev_types:T179=e__SIGEV_NONE:1,__SIGEV_SIGNAL:2,__SIGEV_THREAD:3,;tm:T180=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T181=s8tv_sec:84,0,32;tv_nsec:3,32,32;;timestruc_t:t182=181itimerspec:T183=s16it_interval:181,0,64;it_value:181,64,64;;__clockid_t:T184=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t185=184timer_t:t186=5timeval:T187=s8tv_sec:84,0,32;tv_usec:3,32,32;;itimerval:T188=s16it_interval:187,0,64;it_value:187,64,64;;timezone:T189=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T190=s8hi:28,0,32;lo:28,32,32;;cycles_t:t191=190ki_timeval:T192=s8pad1:28,0,32;pad2:28,32,32;;kt_t:t193=32rlimit:T194=s8rlim_cur:98,0,32;rlim_max:98,32,32;;rusage:T195=s76ru_utime:187,0,64;ru_stime:187,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T196=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T197=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:171,96,32;__data:198=u12__proc:199=s8__pid:76,0,32;__pdata:200=u4__kill:201=s4__uid:79,0,32;;,0,32;__SIGCLD:202=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:203=s4__addr:160,0,32;;,0,32;__file:204=s8__fd:1,0,32;__band:3,32,32;;,0,64;__gfault:205=s12__addr:160,0,32;__lockpage:160,32,32;__dev_id:3,64,32;;,0,96;;,128,96;__pad:206=ar129;0;8;3,224,288;;siginfo_t:t207=197__sigset_t:T208=s32sigset:209=ar129;0;7;4,0,256;;sigset_t:t210=208__fp_dbl_block:T211=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t212=211__fp_int_block:T213=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t214=213__reg64:T215=s512ss_reserved:31,0,64;ss_gr1:31,64,64;ss_rp:31,128,64;ss_gr3:31,192,64;ss_gr4:31,256,64;ss_gr5:31,320,64;ss_gr6:31,384,64;ss_gr7:31,448,64;ss_gr8:31,512,64;ss_gr9:31,576,64;ss_gr10:31,640,64;ss_gr11:31,704,64;ss_gr12:31,768,64;ss_gr13:31,832,64;ss_gr14:31,896,64;ss_gr15:31,960,64;ss_gr16:31,1024,64;ss_gr17:31,1088,64;ss_gr18:31,1152,64;ss_gr19:31,1216,64;ss_gr20:31,1280,64;ss_gr21:31,1344,64;ss_gr22:31,1408,64;ss_arg3:31,1472,64;ss_arg2:31,1536,64;ss_arg1:31,1600,64;ss_arg0:31,1664,64;ss_dp:32,1728,64;ss_ret0:32,1792,64;ss_ret1:32,1856,64;ss_sp:32,1920,64;ss_gr31:32,1984,64;ss_cr11:32,2048,64;ss_pcoq_head:32,2112,64;ss_pcsq_head:32,2176,64;ss_pcoq_tail:32,2240,64;ss_pcsq_tail:32,2304,64;ss_cr15:32,2368,64;ss_cr19:32,2432,64;ss_cr20:32,2496,64;ss_cr21:32,2560,64;ss_cr22:32,2624,64;ss_cpustate:32,2688,64;ss_sr4:32,2752,64;ss_sr0:32,2816,64;ss_sr1:32,2880,64;ss_sr2:32,2944,64;ss_sr3:32,3008,64;ss_sr5:32,3072,64;ss_sr6:32,3136,64;ss_sr7:32,3200,64;ss_cr0:32,3264,64;ss_cr8:32,3328,64;ss_cr9:32,3392,64;ss_cr10:32,3456,64;ss_cr12:32,3520,64;ss_cr13:32,3584,64;ss_cr24:32,3648,64;ss_cr25:32,3712,64;ss_cr26:32,3776,64;ss_cr27:32,3840,64;ss_reserved2:216=ar129;0;1;32,3904,128;ss_oldcksum:28,4032,32;ss_newcksum:28,4064,32;;__reg64_t:t217=215__reg32:T218=s512ss_reserved:219=ar129;0;1;28,0,64;ss_gr1_hi:28,64,32;ss_gr1_lo:28,96,32;ss_rp_hi:28,128,32;ss_rp_lo:28,160,32;ss_gr3_hi:28,192,32;ss_gr3_lo:28,224,32;ss_gr4_hi:28,256,32;ss_gr4_lo:28,288,32;ss_gr5_hi:28,320,32;ss_gr5_lo:28,352,32;ss_gr6_hi:28,384,32;ss_gr6_lo:28,416,32;ss_gr7_hi:28,448,32;ss_gr7_lo:28,480,32;ss_gr8_hi:28,512,32;ss_gr8_lo:28,544,32;ss_gr9_hi:28,576,32;ss_gr9_lo:28,608,32;ss_gr10_hi:28,640,32;ss_gr10_lo:28,672,32;ss_gr11_hi:28,704,32;ss_gr11_lo:28,736,32;ss_gr12_hi:28,768,32;ss_gr12_lo:28,800,32;ss_gr13_hi:28,832,32;ss_gr13_lo:28,864,32;ss_gr14_hi:28,896,32;ss_gr14_lo:28,928,32;ss_gr15_hi:28,960,32;ss_gr15_lo:28,992,32;ss_gr16_hi:28,1024,32;ss_gr16_lo:28,1056,32;ss_gr17_hi:28,1088,32;ss_gr17_lo:28,1120,32;ss_gr18_hi:28,1152,32;ss_gr18_lo:28,1184,32;ss_gr19_hi:28,1216,32;ss_gr19_lo:28,1248,32;ss_gr20_hi:28,1280,32;ss_gr20_lo:28,1312,32;ss_gr21_hi:28,1344,32;ss_gr21_lo:28,1376,32;ss_gr22_hi:28,1408,32;ss_gr22_lo:28,1440,32;ss_arg3_hi:28,1472,32;ss_arg3_lo:28,1504,32;ss_arg2_hi:28,1536,32;ss_arg2_lo:28,1568,32;ss_arg1_hi:28,1600,32;ss_arg1_lo:28,1632,32;ss_arg0_hi:28,1664,32;ss_arg0_lo:28,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_cr27_hi:4,3840,32;ss_cr27_lo:4,3872,32;ss_reserved2:220=ar129;0;3;4,3904,128;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t221=218__ss_narrow:T222=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_cr27:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t223=222__save_state:T224=s1152ss_flags:1,0,32;ss_narrow:223,32,1984;ss_pad:1,2016,32;ss_fpblock:225=u256fpdbl:212,0,2048;fpint:214,0,2048;;,2048,2048;ss_xor:226=ar129;0;127;2,4096,1024;ss_wide:227=u512ss_64:217,0,4096;ss_32:221,0,4096;;,5120,4096;;save_state_t:t228=224__stack:T229=s12ss_sp:160,0,32;ss_flags:1,32,32;ss_size:85,64,32;;stack_t:t230=229mcontext_t:t231=228__sub_ctxt:T232=s48__uc_link:233=*234=xs__ucontext:,0,32;__uc_sigmask:210,32,256;__uc_stack:230,288,96;;__sub_ctxt_t:t235=232__ucontext:T234=s1240uc_mcontext:231,0,9216;uc_spares:177,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:232,9504,384;;ucontext_t:t236=234sig_atomic_t:t237=4sigaction:T238=s40__handler:239=u4__sa_sigaction:240=*241=f20,0,32;__sa_handler:242=*243=f20,0,32;;,0,32;sa_mask:210,32,256;sa_flags:1,288,32;;pthread_t:t244=1sigstack:T245=s8ss_sp:160,0,32;ss_onstack:1,32,32;;sigvec:T246=s12sv_handler:242,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T247=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t248=247siglocal_misc:T249=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:3,128,32;sm_rval2:3,160,32;sm_arg:250=ar129;0;3;3,192,128;;siglocal_misc_t:t251=249siglocal:T252=s1192sl_misc:249,0,320;sl_ss:228,320,9216;;siglocalx:T253=s1344sl_misc:249,0,320;sl_uc:236,320,9920;sl_si:207,10240,512;;__xsi:T254=s116sc:232,0,384;__padding:1,384,32;si:207,416,512;;__xsi_t:t255=254sigcontext:T256=s1392sc_ctxt:257=u1344sl:252,0,9536;sx:253,0,10752;;,0,10752;sc_args:250,10752,128;sc_sfm:247,10880,256;; :T258=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t259=258wait:T260=u4w_status:1,0,32;w_T:261=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:262=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T263=s40arena:27,0,32;ordblks:27,32,32;smblks:27,64,32;hblks:27,96,32;hblkhd:27,128,32;usmblks:27,160,32;fsmblks:27,192,32;uordblks:27,224,32;fordblks:27,256,32;keepcost:27,288,32;;passwd:T264=s44pw_name:91,0,32;pw_passwd:91,32,32;pw_uid:79,64,32;pw_gid:78,96,32;pw_age:91,128,32;pw_comment:91,160,32;pw_gecos:91,192,32;pw_dir:91,224,32;pw_shell:91,256,32;pw_audid:27,288,32;pw_audflg:1,320,32;;s_passwd:T265=s20pw_name:91,0,32;pw_passwd:91,32,32;pw_age:91,64,32;pw_audid:27,96,32;pw_audflg:1,128,32;;u_int32_t:t266=4utimbuf:T267=s8actime:84,0,32;modtime:84,32,32;;stat:T268=s104st_dev:55,0,32;st_ino:58,32,32;st_mode:59,64,16;st_nlink:60,80,16;st_reserved1:9,96,16;st_reserved2:9,112,16;st_rdev:55,128,32;st_size:69,160,32;st_atime:84,192,32;st_spare1:1,224,32;st_mtime:84,256,32;st_spare2:1,288,32;st_ctime:84,320,32;st_spare3:1,352,32;st_blksize:3,384,32;st_blocks:75,416,32;st_pad:4,448,29;st_sysVacl:4,477,1;st_acl:4,478,1;st_remote:4,479,1;st_netdev:55,480,32;st_netino:58,512,32;st_cnode:83,544,16;st_rcnode:83,560,16;st_netsite:82,576,16;st_fstype:8,592,16;st_realdev:55,608,32;st_basemode:9,640,16;st_spareshort:9,656,16;st_uid:79,672,32;st_gid:78,704,32;st_spare4:269=ar129;0;2;27,736,96;;flock:T270=s16l_type:8,0,16;l_whence:8,16,16;l_start:69,32,32;l_len:69,64,32;l_pid:76,96,32;;hrtime_t:t271=31iovec:T272=s8iov_base:160,0,32;iov_len:85,32,32;;uio_rw:T273=eUIO_READ:1,UIO_WRITE:2,;linger:T274=s8l_onoff:1,0,32;l_linger:1,32,32;;socklen_t:t275=85sockaddr:T276=s16sa_family:9,0,16;sa_data:277=ar129;0;13;2,16,112;;sockproto:T278=s4sp_family:9,0,16;sp_protocol:9,16,16;;msghdr:T279=s24msg_name:93,0,32;msg_namelen:1,32,32;msg_iov:280=*272,64,32;msg_iovlen:1,96,32;msg_accrights:93,128,32;msg_accrightslen:1,160,32;;msghdr2:T281=s28msg_name:93,0,32;msg_namelen:275,32,32;msg_iov:280,64,32;msg_iovlen:102,96,32;msg_control:93,128,32;msg_controllen:275,160,32;msg_flags:1,192,32;;in_addr_t:t282=5in_addr:T283=s4s_addr:282,0,32;;sockaddr_in:T284=s16sin_family:8,0,16;sin_port:101,16,16;sin_addr:283,32,32;sin_zero:285=ar129;0;7;2,64,64;;ip_mreq:T286=s8imr_multiaddr:283,0,32;imr_interface:283,32,32;;hostent:T287=s20h_name:91,0,32;h_aliases:288=*91,32,32;h_addrtype:1,64,32;h_length:1,96,32;h_addr_list:288,128,32;;netent:T289=s16n_name:91,0,32;n_aliases:288,32,32;n_addrtype:1,64,32;n_net:282,96,32;;servent:T290=s16s_name:91,0,32;s_aliases:288,32,32;s_port:1,64,32;s_proto:91,96,32;;protoent:T291=s12p_name:91,0,32;p_aliases:288,32,32;p_proto:1,64,32;;rpcent:T292=s12r_name:91,0,32;r_aliases:288,32,32;r_number:1,64,32;;group:T293=s16gr_name:91,0,32;gr_passwd:91,32,32;gr_gid:78,64,32;gr_mem:288,96,32;;dirent:T294=s264d_ino:58,0,32;d_reclen:8,32,16;d_namlen:8,48,16;d_name:295=ar129;0;255;2,64,2048;;__dirdesc:T296=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;DIR:t297=296_dirdesc:T298=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;ptrdiff_t:t299=3wint_t:t300=4wctype_t:t301=4packet_struct:T302=s1036packet_version:25,0,16;packet_type:25,16,16;crc32_value:266,32,32;result_code:25,64,16;buffer:303=ar129;0;1023;2,80,8192;;packet:t304=302main:F1argc:P1argv:P288packet_crc32:r266calculated_crc32:r266result:r25rc:r1send_packet:304receive_packet:304bytes_to_send:1bytes_to_recv:1process_arguments:F1argc:P1argv:P288optchars:305=ar129;0;2047;2argindex:r1c:r1i:r1optchars:305argindex:r1c:r1i:r1alarm_handler:F20sig:P1server_port:G1server_name:G91command_name:G91socket_timeout:G1sd:G1query:G305show_help:G1show_license:G1show_version:G1use_ssl:G1utils.c/home/benny/temp/nrpe-2.0/src/utils.cgcc2_compiled.int:t1=r1;-2147483648;2147483647;char:t2=r2;0;127;long int:t3=r3;-2147483648;2147483647;unsigned int:t4=r4;0000000000000;0037777777777;long unsigned int:t5=r5;0000000000000;0037777777777;long long int:t6=@s64;r6;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=@s64;r7;0000000000000;01777777777777777777777;short int:t8=@s16;r8;-32768;32767;short unsigned int:t9=@s16;r9;0;65535;signed char:t10=@s8;r10;-128;127;unsigned char:t11=@s8;r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;16;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=R3;8;0;complex double:t17=R4;16;0;complex long double:t18=R5;32;0;__builtin_va_list:t19=*20=20_Bool:t21=@s8;-16;__gnuc_va_list:t22=19int8_t:t23=2uint8_t:t24=11int16_t:t25=8uint16_t:t26=9int32_t:t27=1uint32_t:t28=4intfast_t:t29=1uintfast_t:t30=4int64_t:t31=6uint64_t:t32=7intmax_t:t33=31uintmax_t:t34=32intptr_t:t35=3uintptr_t:t36=5int_least8_t:t37=2uint_least8_t:t38=11int_fast8_t:t39=1uint_fast8_t:t40=4int_least16_t:t41=8uint_least16_t:t42=9int_fast16_t:t43=1uint_fast16_t:t44=4int_least32_t:t45=1uint_least32_t:t46=4int_fast32_t:t47=1uint_fast32_t:t48=4int_least64_t:t49=31int_fast64_t:t50=31uint_least64_t:t51=32uint_fast64_t:t52=32ptr32_t:t53=28mqd_t:t54=1dev_t:t55=27ino32_t:t56=28ino64_t:t57=32ino_t:t58=5mode_t:t59=26nlink_t:t60=26fpos32_t:t61=27fpos64_t:t62=31fpos_t:t63=3fsblkcnt32_t:t64=28fsblkcnt64_t:t65=32fsblkcnt_t:t66=5off32_t:t67=27off64_t:t68=31off_t:t69=3fsfilcnt32_t:t70=28fsfilcnt64_t:t71=32fsfilcnt_t:t72=5blkcnt32_t:t73=27blkcnt64_t:t74=31blkcnt_t:t75=3pid_t:t76=27lwpid_t:t77=27gid_t:t78=27uid_t:t79=27tid_t:t80=27ssize_t:t81=3__site_t:t82=26__cnode_t:t83=26time_t:t84=3size_t:t85=5clock_t:t86=28key_t:t87=27__ushort:t88=9__daddr_t:t89=27__caddr_t:t90=91=*2__swblk_t:t92=27caddr_t:t93=90id_t:t94=27useconds_t:t95=28rlim32_t:t96=28rlim64_t:t97=32rlim_t:t98=5site_t:t99=82u_char:t100=11u_short:t101=9u_int:t102=4u_long:t103=5uint:t104=4ushort:t105=9ubit8:t106=11ubit16:t107=9ubit32:t108=28sbit8:t109=2sbit16:t110=8sbit32:t111=27swblk_t:t112=92daddr_t:t113=89cnode_t:t114=83paddr_t:t115=36page_t:t116=35pgcnt_t:t117=27physpfn_t:t118=28iophyspfn_t:t119=36pgaddr_t:t120=36space_t:t121=28prot_t:t122=28ulong_t:t123=5cnt_t:t124=25cdno_t:t125=28use_t:t126=26_physadr:T127=s4r:128=ar129=r129;0000000000000;0037777777777;;0;0;35,0,32;;physadr:t130=131=*127_quad:T132=s8val:133=ar129;0;1;3,0,64;;quad:t134=132spu_t:t135=1cpu_t:t136=8label_t:T137=s160lbl_rp:27,0,32;lbl_sp:27,32,32;lbl_s:138=ar129;0;16;27,64,544;lbl_ss:139=ar129;0;0;27,608,32;lbl_sf:140=ar129;0;9;13,640,640;;label_t:t141=137lkinfo:T142=s16lk_name:91,0,32;lk_flags:1,32,32;lk_pad:133,64,64;;lkinfo_t:t143=142pl_t:t144=5dm_message:t145=91aid_t:t146=27sid_t:t147=76__fd_mask:t148=27fd_set:T149=s256fds_bits:150=ar129;0;63;3,0,2048;;fd_set:t151=149fd_mask:t152=148dir_off_t:t153=27FILE:t154=155=s16__cnt:1,0,32;__ptr:156=*11,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t157=158=s44__cnt:1,0,32;__ptr:156,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:156,128,32;__newbase:156,160,32;__smbuf:159=ar129;0;15;11,192,128;__unused:160=*20,320,32;;__va_list:t161=162=*13__not_va_list__:t163=162div_t:t164=165=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t166=167=s8quot:3,0,32;rem:3,32,32;;wchar_t:t168=4sigval:T169=u4__svi_int_s:170=s4__svi_int:1,0,32;;,0,32;__sival_ptr:160,0,32;;sigval_t:t171=169pthread_attr_t:t172=1sigevent:T173=s52__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:171,64,32;__sigev_notify_function:174=*175=f20,96,32;__sigev_notify_attributes:176=*172,128,32;__sigev_reserved:177=ar129;0;7;1,160,256;;sigevent_t:t178=173__sigev_types:T179=e__SIGEV_NONE:1,__SIGEV_SIGNAL:2,__SIGEV_THREAD:3,;tm:T180=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T181=s8tv_sec:84,0,32;tv_nsec:3,32,32;;timestruc_t:t182=181itimerspec:T183=s16it_interval:181,0,64;it_value:181,64,64;;__clockid_t:T184=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t185=184timer_t:t186=5timeval:T187=s8tv_sec:84,0,32;tv_usec:3,32,32;;itimerval:T188=s16it_interval:187,0,64;it_value:187,64,64;;timezone:T189=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T190=s8hi:28,0,32;lo:28,32,32;;cycles_t:t191=190ki_timeval:T192=s8pad1:28,0,32;pad2:28,32,32;;kt_t:t193=32rlimit:T194=s8rlim_cur:98,0,32;rlim_max:98,32,32;;rusage:T195=s76ru_utime:187,0,64;ru_stime:187,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T196=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T197=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:171,96,32;__data:198=u12__proc:199=s8__pid:76,0,32;__pdata:200=u4__kill:201=s4__uid:79,0,32;;,0,32;__SIGCLD:202=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:203=s4__addr:160,0,32;;,0,32;__file:204=s8__fd:1,0,32;__band:3,32,32;;,0,64;__gfault:205=s12__addr:160,0,32;__lockpage:160,32,32;__dev_id:3,64,32;;,0,96;;,128,96;__pad:206=ar129;0;8;3,224,288;;siginfo_t:t207=197__sigset_t:T208=s32sigset:209=ar129;0;7;4,0,256;;sigset_t:t210=208__fp_dbl_block:T211=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t212=211__fp_int_block:T213=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t214=213__reg64:T215=s512ss_reserved:31,0,64;ss_gr1:31,64,64;ss_rp:31,128,64;ss_gr3:31,192,64;ss_gr4:31,256,64;ss_gr5:31,320,64;ss_gr6:31,384,64;ss_gr7:31,448,64;ss_gr8:31,512,64;ss_gr9:31,576,64;ss_gr10:31,640,64;ss_gr11:31,704,64;ss_gr12:31,768,64;ss_gr13:31,832,64;ss_gr14:31,896,64;ss_gr15:31,960,64;ss_gr16:31,1024,64;ss_gr17:31,1088,64;ss_gr18:31,1152,64;ss_gr19:31,1216,64;ss_gr20:31,1280,64;ss_gr21:31,1344,64;ss_gr22:31,1408,64;ss_arg3:31,1472,64;ss_arg2:31,1536,64;ss_arg1:31,1600,64;ss_arg0:31,1664,64;ss_dp:32,1728,64;ss_ret0:32,1792,64;ss_ret1:32,1856,64;ss_sp:32,1920,64;ss_gr31:32,1984,64;ss_cr11:32,2048,64;ss_pcoq_head:32,2112,64;ss_pcsq_head:32,2176,64;ss_pcoq_tail:32,2240,64;ss_pcsq_tail:32,2304,64;ss_cr15:32,2368,64;ss_cr19:32,2432,64;ss_cr20:32,2496,64;ss_cr21:32,2560,64;ss_cr22:32,2624,64;ss_cpustate:32,2688,64;ss_sr4:32,2752,64;ss_sr0:32,2816,64;ss_sr1:32,2880,64;ss_sr2:32,2944,64;ss_sr3:32,3008,64;ss_sr5:32,3072,64;ss_sr6:32,3136,64;ss_sr7:32,3200,64;ss_cr0:32,3264,64;ss_cr8:32,3328,64;ss_cr9:32,3392,64;ss_cr10:32,3456,64;ss_cr12:32,3520,64;ss_cr13:32,3584,64;ss_cr24:32,3648,64;ss_cr25:32,3712,64;ss_cr26:32,3776,64;ss_cr27:32,3840,64;ss_reserved2:216=ar129;0;1;32,3904,128;ss_oldcksum:28,4032,32;ss_newcksum:28,4064,32;;__reg64_t:t217=215__reg32:T218=s512ss_reserved:219=ar129;0;1;28,0,64;ss_gr1_hi:28,64,32;ss_gr1_lo:28,96,32;ss_rp_hi:28,128,32;ss_rp_lo:28,160,32;ss_gr3_hi:28,192,32;ss_gr3_lo:28,224,32;ss_gr4_hi:28,256,32;ss_gr4_lo:28,288,32;ss_gr5_hi:28,320,32;ss_gr5_lo:28,352,32;ss_gr6_hi:28,384,32;ss_gr6_lo:28,416,32;ss_gr7_hi:28,448,32;ss_gr7_lo:28,480,32;ss_gr8_hi:28,512,32;ss_gr8_lo:28,544,32;ss_gr9_hi:28,576,32;ss_gr9_lo:28,608,32;ss_gr10_hi:28,640,32;ss_gr10_lo:28,672,32;ss_gr11_hi:28,704,32;ss_gr11_lo:28,736,32;ss_gr12_hi:28,768,32;ss_gr12_lo:28,800,32;ss_gr13_hi:28,832,32;ss_gr13_lo:28,864,32;ss_gr14_hi:28,896,32;ss_gr14_lo:28,928,32;ss_gr15_hi:28,960,32;ss_gr15_lo:28,992,32;ss_gr16_hi:28,1024,32;ss_gr16_lo:28,1056,32;ss_gr17_hi:28,1088,32;ss_gr17_lo:28,1120,32;ss_gr18_hi:28,1152,32;ss_gr18_lo:28,1184,32;ss_gr19_hi:28,1216,32;ss_gr19_lo:28,1248,32;ss_gr20_hi:28,1280,32;ss_gr20_lo:28,1312,32;ss_gr21_hi:28,1344,32;ss_gr21_lo:28,1376,32;ss_gr22_hi:28,1408,32;ss_gr22_lo:28,1440,32;ss_arg3_hi:28,1472,32;ss_arg3_lo:28,1504,32;ss_arg2_hi:28,1536,32;ss_arg2_lo:28,1568,32;ss_arg1_hi:28,1600,32;ss_arg1_lo:28,1632,32;ss_arg0_hi:28,1664,32;ss_arg0_lo:28,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_cr27_hi:4,3840,32;ss_cr27_lo:4,3872,32;ss_reserved2:220=ar129;0;3;4,3904,128;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t221=218__ss_narrow:T222=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_cr27:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t223=222__save_state:T224=s1152ss_flags:1,0,32;ss_narrow:223,32,1984;ss_pad:1,2016,32;ss_fpblock:225=u256fpdbl:212,0,2048;fpint:214,0,2048;;,2048,2048;ss_xor:226=ar129;0;127;2,4096,1024;ss_wide:227=u512ss_64:217,0,4096;ss_32:221,0,4096;;,5120,4096;;save_state_t:t228=224__stack:T229=s12ss_sp:160,0,32;ss_flags:1,32,32;ss_size:85,64,32;;stack_t:t230=229mcontext_t:t231=228__sub_ctxt:T232=s48__uc_link:233=*234=xs__ucontext:,0,32;__uc_sigmask:210,32,256;__uc_stack:230,288,96;;__sub_ctxt_t:t235=232__ucontext:T234=s1240uc_mcontext:231,0,9216;uc_spares:177,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:232,9504,384;;ucontext_t:t236=234sig_atomic_t:t237=4sigaction:T238=s40__handler:239=u4__sa_sigaction:240=*241=f20,0,32;__sa_handler:242=*243=f20,0,32;;,0,32;sa_mask:210,32,256;sa_flags:1,288,32;;pthread_t:t244=1sigstack:T245=s8ss_sp:160,0,32;ss_onstack:1,32,32;;sigvec:T246=s12sv_handler:242,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T247=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t248=247siglocal_misc:T249=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:3,128,32;sm_rval2:3,160,32;sm_arg:250=ar129;0;3;3,192,128;;siglocal_misc_t:t251=249siglocal:T252=s1192sl_misc:249,0,320;sl_ss:228,320,9216;;siglocalx:T253=s1344sl_misc:249,0,320;sl_uc:236,320,9920;sl_si:207,10240,512;;__xsi:T254=s116sc:232,0,384;__padding:1,384,32;si:207,416,512;;__xsi_t:t255=254sigcontext:T256=s1392sc_ctxt:257=u1344sl:252,0,9536;sx:253,0,10752;;,0,10752;sc_args:250,10752,128;sc_sfm:247,10880,256;; :T258=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t259=258wait:T260=u4w_status:1,0,32;w_T:261=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:262=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T263=s40arena:27,0,32;ordblks:27,32,32;smblks:27,64,32;hblks:27,96,32;hblkhd:27,128,32;usmblks:27,160,32;fsmblks:27,192,32;uordblks:27,224,32;fordblks:27,256,32;keepcost:27,288,32;;passwd:T264=s44pw_name:91,0,32;pw_passwd:91,32,32;pw_uid:79,64,32;pw_gid:78,96,32;pw_age:91,128,32;pw_comment:91,160,32;pw_gecos:91,192,32;pw_dir:91,224,32;pw_shell:91,256,32;pw_audid:27,288,32;pw_audflg:1,320,32;;s_passwd:T265=s20pw_name:91,0,32;pw_passwd:91,32,32;pw_age:91,64,32;pw_audid:27,96,32;pw_audflg:1,128,32;;u_int32_t:t266=4utimbuf:T267=s8actime:84,0,32;modtime:84,32,32;;stat:T268=s104st_dev:55,0,32;st_ino:58,32,32;st_mode:59,64,16;st_nlink:60,80,16;st_reserved1:9,96,16;st_reserved2:9,112,16;st_rdev:55,128,32;st_size:69,160,32;st_atime:84,192,32;st_spare1:1,224,32;st_mtime:84,256,32;st_spare2:1,288,32;st_ctime:84,320,32;st_spare3:1,352,32;st_blksize:3,384,32;st_blocks:75,416,32;st_pad:4,448,29;st_sysVacl:4,477,1;st_acl:4,478,1;st_remote:4,479,1;st_netdev:55,480,32;st_netino:58,512,32;st_cnode:83,544,16;st_rcnode:83,560,16;st_netsite:82,576,16;st_fstype:8,592,16;st_realdev:55,608,32;st_basemode:9,640,16;st_spareshort:9,656,16;st_uid:79,672,32;st_gid:78,704,32;st_spare4:269=ar129;0;2;27,736,96;;flock:T270=s16l_type:8,0,16;l_whence:8,16,16;l_start:69,32,32;l_len:69,64,32;l_pid:76,96,32;;hrtime_t:t271=31iovec:T272=s8iov_base:160,0,32;iov_len:85,32,32;;uio_rw:T273=eUIO_READ:1,UIO_WRITE:2,;linger:T274=s8l_onoff:1,0,32;l_linger:1,32,32;;socklen_t:t275=85sockaddr:T276=s16sa_family:9,0,16;sa_data:277=ar129;0;13;2,16,112;;sockproto:T278=s4sp_family:9,0,16;sp_protocol:9,16,16;;msghdr:T279=s24msg_name:93,0,32;msg_namelen:1,32,32;msg_iov:280=*272,64,32;msg_iovlen:1,96,32;msg_accrights:93,128,32;msg_accrightslen:1,160,32;;msghdr2:T281=s28msg_name:93,0,32;msg_namelen:275,32,32;msg_iov:280,64,32;msg_iovlen:102,96,32;msg_control:93,128,32;msg_controllen:275,160,32;msg_flags:1,192,32;;in_addr_t:t282=5in_addr:T283=s4s_addr:282,0,32;;sockaddr_in:T284=s16sin_family:8,0,16;sin_port:101,16,16;sin_addr:283,32,32;sin_zero:285=ar129;0;7;2,64,64;;ip_mreq:T286=s8imr_multiaddr:283,0,32;imr_interface:283,32,32;;hostent:T287=s20h_name:91,0,32;h_aliases:288=*91,32,32;h_addrtype:1,64,32;h_length:1,96,32;h_addr_list:288,128,32;;netent:T289=s16n_name:91,0,32;n_aliases:288,32,32;n_addrtype:1,64,32;n_net:282,96,32;;servent:T290=s16s_name:91,0,32;s_aliases:288,32,32;s_port:1,64,32;s_proto:91,96,32;;protoent:T291=s12p_name:91,0,32;p_aliases:288,32,32;p_proto:1,64,32;;rpcent:T292=s12r_name:91,0,32;r_aliases:288,32,32;r_number:1,64,32;;group:T293=s16gr_name:91,0,32;gr_passwd:91,32,32;gr_gid:78,64,32;gr_mem:288,96,32;;dirent:T294=s264d_ino:58,0,32;d_reclen:8,32,16;d_namlen:8,48,16;d_name:295=ar129;0;255;2,64,2048;;__dirdesc:T296=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;DIR:t297=296_dirdesc:T298=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;ptrdiff_t:t299=3wint_t:t300=4wctype_t:t301=4packet_struct:T302=s1036packet_version:25,0,16;packet_type:25,16,16;crc32_value:266,32,32;result_code:25,64,16;buffer:303=ar129;0;1023;2,80,8192;;packet:t304=302generate_crc32_table:F20crc:r5poly:r5i:r1j:r1calculate_crc32:F5buffer:P91buffer_size:P1crc:r5current_index:r1randomize_buffer:F20buffer:P91buffer_size:P1fp:r305=*154x:r1seed:r1my_tcp_connect:F1host_name:P91port:P1sd:P306=*1my_connect:F1host_name:P91port:P1sd:P306proto:P91servaddr:284hp:r307=*287ptrp:r308=*291result:r1servaddr:284hp:r307ptrp:r308result:r1my_inet_aton:F1cp:P309=*310=k2addr:P311=*283val:r4base:r1n:r1c:r2parts:312=ar129;0;3;102pp:r313=*102strip:F20buffer:P91x:r1index:r1sendall:F1s:P1buf:P91len:P306total:r1bytesleft:r1n:r1recvall:F1s:P1buf:P91len:P306timeout:P1total:r1bytesleft:r1n:r1start_time:84current_time:84total:r1bytesleft:r1n:r1start_time:84current_time:84my_strsep:F91stringp:P288delim:P309begin:r91end:r91display_license:F20crc32_table:S314=ar129;0;255;5/var/tmp//ccT8rxJb.s/var/tmp//ccT8rxJb.slib2funcs.asmH,d'-d':<Ik}Ԁ R(:Mfɀ+0:=;L<Z=i>w?ABGHĀNԀOXYcf,i>lQoerzux{~ʀ݀0ET`!m'|.=CHMĀSԀ\bh rx)~8DXl}̀ـ"/<KXgxʀ#ڀ)5:>?#@0A>BJCXDfEtFGHIKL̀M݀    2 C S bX q[ \ ] _ &` 4b Ah N ހx 2 D P c q 3 Ā> Ԁ  U mg E \ uQ U ̀. ۀ*!<(R'H;!Rmg#2bـCsPӀ ΀I%Ѐ!"ǀ"ڀ-K)-^1s1΀22ր323*53>3J34[V4o)45Q5$5X560?6H7#7.7h77U888ŀ8׀9:F;;;;;ʀ>E>3>>? ?<?N??ʀ@\@bAA1AAހBRBBCDCC݀D@D[DEECEHEрFdEFt$7(F|@7F@7D7DADC$DA(DC,DSTDkhDnlDoDsDDDDDDDDDDDDDDDDDD D$D(D,D8D<D@DLDPDTD\DhDlDxDDDDDDDDDDDD!D DD!D$D+D,D,D<DDDLD\DdDtD|DD)DlDUDVDWDXDYDZD[D\ D],D^8D_DD`LDaXDbdDcpDd|DeDfDgDhDEDFDGDHDIDJDKDLDP F@8F@9F@:F@;Fǀ<F׀=F>(F?,8G $1-`G@1G'@1D1DGD1D3D1D4(D1,DGXDJ`DLlDJpDJtDL|DPDRDVD[DmDnD^DtDpDqDaDwDhDiDDcPDdXD`DDDDDDDDDD(G12GM@3 GY@4G^@5Gc2Gp@3 G|@4G@5P8G$1G@DDDD DDG G G G G G !G #G $H %H -d1(I d1(d10<?asʀHۀ0C\+&:3;B<P=_>m?|ABGHNʀOۀXYc f"i4lGo[rpux{~Ӏ&;JV!c'r.=CHMSʀ\׀bhrx~.:Nbs€π܀%2AN]n#Ѐ)5:> ?@&A4B@CND\EjFyGHIKLÀMӀ    ( 9 I XX g[ u\ ] ހ_ ` *b 7h D Ԁx ( : F Y g u3 > ʀ ۀ U cg ; R kQ U €. р !2(HH1xHm](Xπ 9sFyɀĀI׀ xƀ!ހ""Ѐ-A)-T1s1Ā22̀323 5343J34QV4e)4y5 Q55N56&?6>7 #7$7^77U78x88̀9}:<;;~;;;>;>3>>܀??2?D??@R@bAA'AAԀBHBBC:CCӀD6D[DEECEHEǀFZEFj$(1D(D,D-D,D- D.D/D0 D1(D/,D54D-8D8DD3HF@)F@)F@*F@*HF$=2 F@=F@=D=DBDDDEDFDD DF$DD,DJ4F@>F@@<F$N2F@NG@NDND^DND^ DN(DN,D^4D_<D`DDaLDaPDhXDh\DidDjDiDjDiDlDfG@OG@PG"@QG*$q3G<@qGJ@qGR@qDqDtDqDt G]${4Gk@{Gy@{G@{G@{D{DD{DD{D4D8D<D@DHDLDXD`DhDxDDDDDDDDDDDDD(D4DHDTD\DpDxG|G@}G@~G@Gƀ|G@}G@~G@G$6G@H@ DDDDD$D(D,DPDXDlDpD|DDDDDDD D D,D4D<DDDDDDDDDDDD D D DD$DDDDDDDDDDH@H%@H-@H2@H7HO@ 0H\$9Hf@DD!D"D#D!HD)PHq@Hv@\H$.:8H@.H@.H@.D.D1D.D.$D0(D4,D74D:HD?PDC\DF`DGhH@/H@0H@1H$K:H@KH@KH@KH@K DKDS DK$DS(DK,DL4DK8DMDDSHDNPDUTDX\D[lD^DgDlDsDpDtD_D`DbDc H@LH@MH@NIOIP I @LI)@MI6@NI;OIIP IY$y<8Ig@yIt@yDyD}DyD|D}DD4D@DLDTDXD\D`DpDxI@zI@zI$<DDDDD DD D,D8DDDPD\DhDtDDDDI(#@xd=p<d=p+=pD:=pD>=tD?=xD@=|DA=DC=DD=DE=DF=DG=DK=DL=DM=NRPE/NRPE/opt/nrpe/bin/nrpe010055500000000000000000003326441000062000200157540ustar00rootroot000037777777777@@|LBp--GI(fP@d  92453-07B11.13@  92453-07B11.097H@`HX"P  LX \HHtX!\P@pP@pX 8\8X 8`p`X HXuXX IvX Xv(>(@`>(@<>( @P>( @ h>(&(@( >('@>((@>(R@ l>H>IiLLY Pf? @>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$ $GDB_DEBUG$ $GDB_SYMBOLS$ $GDB_STRINGS$0$08 0L@0@0 @0 @0  @0  @% D0  @0  @0  @   d  U$@! 4 @@*U$h 0 0@0 @@(` X0 P@'0 \@/0 p@70 @S0 p0 uX0 v0 v0 @0 @0 @00 @0 , @0 @ @0 L @0` @0t @ d @@ Pt[ \ @& +@  A[ @&[ \@@ @ 0@ 0@(@ A% @&{ @& @& @'[  @&00@ 0hv0@(d @'{ $' 4@' H@'; \ @ Pt' l] ( A( t]0$@  @+0 4@+ @+0 H@+ U X-0 @  U,@ U -00 @ U `, U 81x U 8+0 @( 0 @ U 6 U ,p1`0 8 @ 0 L @0 `@ 0 t @ U  10 @0 @0 @ U  -H0 @ U + 0l U p9 U,X0  @ U$@>@0 0 @$ U<1 <al UH,p0 T @ H]0 d @0 t @ T] `i lb@ U, xe<0 @1 k g UH1 ` ] U- i0 @Jk0 @>s b b b b| bp g b b  b ,c( 8c0 Dc< PcH \b` hbH tbX i i i a  ih a\ i4 ap a a a b i bD (bL 4cX @d$ Lc Xf dfD pfd |f hl g f h@ g( h  gX h g g g h h $e 0ch <c Hd` Td `h ld xd d e e( e@ e\ ex e e f l k _ _ _\ ,_ 8_ D^ P^ \`  h`` t` UH(0 A@[S UxG  + l ` lt ^h ^< ^0 U9 U$9 U48 U@1H UL7 UX-`0 d @0 Ax@Q UD8 U0DP UD k ] l  lD ] UHp U(D l j jl (j( 4j @k Lj XkL dk pi0 U@E0 A@70 @60 @J0 @C0 Q$@L0 A8@N0 P@C30 h@80 |@Ls0 A@H0 @9 U86h U6 U1 U,0 @[ U+ UX10 U(0,( U4, U@, UL,0 X@Q Ut(6 U9h U980 @G U@D UPD U`D UDh U`N UxH UXLX UH@ UxHX UJ U H U0(D U<PH UHP9 UT9P U`H70 Al@U Uh9 U9  U@90 U@Z#0 @@Rk0 Q@Y U>X UD  |+ Q0 @C0 A@-{ C N >p 9 8 7 6 1 -x C0 C E G H Jh J Lp L Q @ U$0U` 8nL ,n p o  n <l oH Dn m Pm l l l l l m m0 mH mh m \o l U0U Hp| p8 tp ho0 U@@S UPSx UdUx UtR8 UpRP UR  UhS UhS UU UHYh UZ U[8 US UU \0 @Y 0 Q@S[ |Q Q Rh Q [ [P Z  Y Y U S SX (\ 4\ @\ L\ X\ d\ p\ |\ \ \ \ \ \ \ \0 @\ \  0 @' 0 ,@?0Hv0T@0`@(d0t@ + + + @+ + + $Q + + `+ + + + + Q + L+ + + 4+ + + H+ +$ Q + 0Q @+ + Q tQ 4+ + + + + t+ (+ + + Q <+ + + Q ,+ + L+ + <+ + T+ + dQ PQ + Q + Q Q + + X+ +  + Q + + 0+ + + $+ + H+ +  + Q + + + $+0 A@-x+0 @CC0 @GG0 @PSmain__gcc_plt_call __text_start ___stack_zero __data_startcrt0.oPA-RISC 2.0 Assembler HP92453-03UX.11.01.10 (ROSE)../mapdld.c /CLO/Components/LINKER/Src/csu/CRT_DBG 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! -AcHPC HP92453-01 W.11.01.../maptsd.c /CLO/Components/LINKER/Src/csu/CRT_DBG 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! -Acset_tpL$0007_is_89_0L$0002L$0004L$0001 __map_dldL$0005__do_thread_initL$0008 DS$mapdlderrorC$14writestrlenitoa__exit S$17DD$itoa get_environopenreadlseekmmapclose_utssyssyserrorlwp_setprivatelwp_getprivate DS$maptsdC$2 S$11DD$itoa__set_tp__get_tp$global$$START$$ARGV_environ _fp_status _CPU_REVISION_CPU_KEYBITS_1 _FPU_MODEL_start $$dyncall __tool_init_mcount_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_ENDerrno__ismt_tepv_ktepv__islwp__cxperf_dld_hook __dld_loc__tdsize _thread_init_etext_endtaddrL$C0134L$C0003L$C0025L$C0027L$C0117L$C0028L$C0070L$C0130L$C0064L$C0007L$C0010L$C0108L$C0041L$C0042L$C0040L$C0039L$C0037L$C0100L$C0043L$C0044L$C0045L$C0046L$C0047L$C0048L$C0049L$C0036L$C0032L$C0035L$C0109L$C0111L$C0110L$C0001L$C0093L$C0002L$C0094L$C0004L$C0005L$C0006L$C0008L$C0009L$C0096L$C0030L$C0034L$C0050L$C0033L$C0051L$C0065L$C0066L$C0063L$C0061L$C0103L$C0099L$C0059L$C0104L$C0058L$C0106L$C0057L$C0105L$C0107L$C0095L$C0098L$C0102L$C0101L$C0067L$C0052L$C0038L$C0031L$C0029L$C0097L$C0055L$C0054L$C0053L$C0056L$C0062L$C0072L$C0073L$C0071L$C0069L$C0068L$C0060L$C0135L$C0132L$C0020L$C0019L$C0018L$C0017L$C0016L$C0015L$C0014L$C0021L$C0022L$C0023L$C0133L$C0000L$C0125L$C0013L$C0012L$C0011L$C0128L$C0024L$C0127L$C0126L$C0026L$C0137L$C0120L$C0122L$C0121L$C0118L$C0124L$C0123L$C0129L$C0131L$C0119 L$text0000L$text_end0000$CODE$syslogdebugputs command_namememcmpstrncpy macro_argv show_helpsnprintfstrtokallow_arguments show_license allowed_hosts command_listatoi config_filecommand_timeoutserver_addressputchar show_versionexitstrerrorstrncat use_inetdfreeuse_sslstrdupfork server_port nrpe_user nrpe_groupsignalread_config_filestrstrcheck_privilegeshandle_connectiongetegid my_strsepstrspnoptargwaitpid inet_ntoastrcmpfgetsstrcpyprintfsocket_timeoutcalculate_crc32fcntltimekillgeteuidalarm my_system add_commandread_config_dirvalidate_request free_memoryprocess_macrosprocess_argumentsis_an_allowed_host find_commandcontains_nasty_metacharsdrop_privilegeswait_for_connectionsopendirreaddirfclosegetcwddisplay_licenseopenlogfopenstrcatumaskchdirsetsidgenerate_crc32_tableclosediracceptbindmy_system_sighandlerpopenpclosegetoptgetgrnamstrcspnsetgidgetpwnamstrchr initgroupssetpgidsetuidsocketlistenmalloc my_inet_atonsleep setsockopt getpeernamerecvallrandomize_buffersendallmemsetpipe sighandler crc32_table __SB_masksisascii_isdigit my_connect gethostbyname_islowersrandrandfgetcmemcpygetprotobyname _isxdigitsendrecvstrpbrkconnect_isspacestripmy_tcp_connectL0L5L0L9L0L8L0L7L0L6L0L11L0L4L0L3L0L2L0L1L0L0L0F1L0L12L0L10L0F0dyncallUUX.11.01.06 (ROSE)noshlibs$$dyncall_external$$dyncall_external_20etextedataend_etext_edata_end __SYSTEM_ID _fp_status__tdsize`l7@7@7H6l7J7 M45l7N45l6L6Ly[/- (U pO@hů;A8v˚vY;'8t 4L4R '-(Kg6L'HVL&Hl!xyP6 e!x)D+!xry 4 sYEuR Rg mTLL#Vp,VQ!xT/}^\ kD!=kthhv!x݋:4l kD sE!xg6e\kQ0@A֘ kD6u- !x/P'6&f&//] y@ &fQ!x /Bjgyh!xng@ԭݶ̱b ƿ˚v8vhů;An bltD8rP.4R'-(;g6LΜ'HVLΦ艤HlxzP6ex)D+xq 7 sY5uRRg mTLL#&p,&QxW/ ^\kG=kwhhx݈::lkG s5xg8e\͈k_0\1֘dkG6t x/ 6&f/&/_੤] y0&f!šx /Bgzhxmg@׭    '@ -@ 4@ :@A@K@UV@Ud@ Uo@(dUt@Uu@U+UCU @U GU@U PU@U "}  %-6<CIOUZ_gox '1:AIPXckpu} nrpe/usr/lib/libnsl.1/usr/lib/libc.2_tepv_ktepverrno__ismt__dld_loc_SYSTEM_ID_CPU_REVISION_FPU_MODEL_end_environacceptsignalsetsockoptchdirputsalarmisasciimemcmppopenmallocwritefopenpclosesleeprandgetgrnamstrcpyfcntlpipestrcmpkillreadforkstrchr_startrecvgeteuid_isdigitfgetsfclosefgetcsrandumaskexitopenreaddirputcharclosedirstrcatstrncpygetpeernamesendsetuidsysloggetoptgetprotobynamestrtokgetpwnamsetsidgetegidstrdupsnprintflistengetcwd_islowergethostbynamewaitpidconnectsetgid_isxdigit_isspacestrlenstrncatprintfopenloginitgroupsstrpbrkbindatoisetpgidtimeopendirfreestrstrsocketstrcspnclosememcpystrerrorstrspnmemsetinet_ntoamainsighandlermy_system_sighandler__d_traperrno__ismt_ktepv_tepvoptarg__SB_masks k? k?k?@@K?@ @Ku;Ks; k?#`87{7 +h#+h8@'y 4yEe'y 7D7%767+4>#+@744445 rנjb+h%0+h%8 (4Ц @Ц D(43 H?(ਃ 43 ` 7+4>7D7%7744z##074444@H@7D7%7#%7444+H8@7D7%77+`H6І 24E74444#0(7@@@@ 7K?@ @@@@k?7k?#B0k? 7Y k?4@4 @@K?K?7@4K? *@K? K? 7@@4K? rKa?H:@7?!#07 4@4@x7?!7?!7@4#"079 4@4Ka?@xH:K>@7? 44@B7?@B?7?B?@k?ok?7?"0'E' 86 0.&40N 1N 7?9AE'E1!881N 0N 9!F'F9AE881N 1$N 1A'1a0 0 1$N 1DN9aJ'J2 9@9@2N1dN2 ' 8G1@' X1@ 2N1dN 2 ' 8G 'V1@ 9G4`1dN9%G'X:E1@ 'E887A`1dN'W3N:Et"1DN 8K7C`0 'E18 V!9eG1!6`8:G' F9eG1DN 1$N  'G9aH9GS9G' H9AE4` 'E'G'F6 # 4W`7=$ |6`6`= 37`!/K?YK?@O?k?ok)4`@54`< G>-( 44 _4+H60K>9K>QK>ik< *K>y4 ߟ444K>IKa $k?459@ 4 7+4: 4 _4X54K>a59k?4@4"`75K<@K4k>+k>4!k>+`H?0k>+H50g k>+4= k>+478k>Ka?49k? Ka?4:k? 4b c?Ka?4=K?k?+`43(k?1@ k?+44!k?!k?)4 4_47=)4 @4_4G=-+4: 4 _m4+4: 4 _=4+4: 4 _ 4u k?)+`H?@k?9k?A k?Ik?Q@k?Q+`Kqh% K>Ak?( k?49k?( k?q4: (k?+`k> 4"k?yk>7>7>444? U7K@7?ςK>ك ( 4z7W56 267346?7B? C? (?7W4@ˀ@  4 "@R@@@  4 "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4& "@@@@  4 "@@@@  4 "@@@@  4 "@R@@@  4r "@@@@Ka?4!4! <4?@@k?7k?#B0k? 7Y @k?4_4 @@K?K?7_4K? *@K? K? 7_4K? rKa?H:@7?!#07 P4_-4@x7?!7?!7_4#"079 `4_4Ka?_H:K>@7? 44@B7?@B?7?B?@k?ok?7?"0'E' 86 0.&40N 1N 7?9AE'E1!881N 0N 9!F'F9AE881N 1$N 1A'1a0 0 1$N 1DN9aJ'J2 9@9@2N1dN2 ' 8G1@' X1@ 2N1dN 2 ' 8G 'V1@ 9G4`1dN9%G'X:E1@ 'E887A`1dN'W3N:Et"1DN 8K7C`0 'E18 V!9eG1!6`8:G' F9eG1DN 1$N  'G9aH9GS9G' H9AE4` 'E'G'F6 # 4W`7=$ |6`6`= 37`!/K?YK?@O?k?7+`H60+ H4?44477K?Y@7??K?Yk?4?k?474_4$+`7 h<8_E@eK?Y#0+7 p4: _E4%K?Y@z@@`@@K?@ @KuaKs>i k?Ku1Ks>9 k?Ku>AKs>I k?Ku;Ks; k?Ku=aKs=i k?Ku:qKs:y k?Ku:Ks: k?KuQKs>Y k?k?7k?k?!A@k?+C%E+H3 0b&H 8b%+H3 @b%H 8b%b`#+H3 0b##B0` @+H3 0b (H 8b +H3 @b +_}4#B0C47Z 4$ _u40@s 4^st Y7/_e4c?4Z_m`` Z#"0_}79 `_Z7/4Z_ `@Z!+`44!P _4!A@+H3 Hb!r_E@ 24K.K?K?K?!@7/_% 04_=Y#B0_U7Z _u4_4_4_u44_4 4 _u44 _]4+H: +H9 @@@@@@4@@@4}4X4#"0_79 E4#B0_7Z _4#B0_7Z `#B0_7Z x#B0_7Z #B0_m7Z H#B0_U7Z _u4#B0_-7Z #B0_7Z0#B0_7Z#B0_7Z8#B0_7Z#C_7Z@#C_7Z#C_7ZH_4A@4_m #C_%7Z#C_ 7Z@#C##7Z_E79#C##7Z_79#C_7Z _4_4p#C_m7Z#C_U7Z_E4p_e4MH 8+EKu;Ks; k?KuKs> k?Ku>Ks> k?Ku=Ks= k?k?##779k?9Hk?Ik?k?k?!k?)k?1k?Ak?Qk?Y_k?a(F+4I7/+`5+ J4,@+MZ4_X!XC/4Fst?4`?Zt?4Z##_m79&C4##_=79&E##Z79_54%##Z79_4 0##Z79_4 ##_Z>Z_Z4K,K?K?K?!K?)K?1K?9K?AK?IK?QK?YK?a@7-Z79_4$ ##Z79_4###Z79_4 ##_ Z4 Y_U5Z@a##XW479P_M@u4?Z_E798 Z##_794##_m79Ї Z@hYMZ##XW4%79##Z_}79P!##Z79`_4!h##Z79x_4!##Z79_4 ##Z79_]4 X##_Z+Zh< ##XW479@XW479_MZ04ui (_MZ+Mh< _%Z+%h< _Z+@h< P4h3 Ph PY5: _ 4 `_MZ+4Yuh< ##XW4U797-Y4_ ECc/_ 7-4^| st @Z7_ mZ| ##XW4}79H##XW4M79X4##_ }79 84?Ku>Ks> k?KuKs> k?Ku=Ks= k?Ku:aKs:i k?Ku=Ks= k?KugF4k>Zk??_7>gH+STk>k>@6 4Ug>+6 D3 ܎&g>k>Z7>_54 fZ_E4 er4 ##_79 P+H3 (b% "c+JdG4_mYY_U4H Pb$BKa?EZ4_4cC_@Z @D_]@44_mZuZ_-@#4`bZ_4 k>Z7>_%7>aH Pb!K>_%7>ZYW#_7 xc>@Z +H3 Pb ##@ ZH Pb RZ_@K?!K?K>YK?K? K?@7>##X79 _4}Z4_79 /4##X_79 H P_K>G>##X4_=79 @-K>Ka?H:E_e@HW##4_79 xmZKa?H:E_@H4W##_m79 Z_@Ht 4s!4 `<4_@ZG>4##_79 8+`##48@4_79 ]Ka?##4 _a79 "cKa?H:E_@H##W479 X_@4Ka?H:E_@H##W479 @7>9gZ##4_I79 44##_79P4Ka?H:E_E@H##W479Ku>Ks> k?Ku?aKs?i k?k?+"4>6>k?9k>+ H3 Pk? Lk?4k?Gk?!k?1 4Yk> 4 k?k?)b( 4Q+4"6>  u  H3 X`'K`G e ##479_@K>K>K?K? K?K?K?!K?)K?1K?9+4>K?@"6>@ &@H Pb%+##H: J79x_4"74Z#"7_ 6cH Pb"##IZ _4i@ +`4$P_  _47_Z |!j744Z_uXZ@|Yg44gY7_YgckZ@YkIt X"6> 6x? XH Pb=?K>##XW4_79K> Z@YH P_Z m4X_i79IZ _}IZ Ї"H7.7@74_Zc.ZY@84H Pb!+4cH9 ZXk?7D@pWH PHb C"6> b Cц` X#ucW##X479@_45IZ Z7_ 4H Z#4_ u7G##479X_9W"##479H_X%+74IW Z#_7pcH Pb 4IZ ##479 x_aX4"~##6s>4 ~ _79++4##E_79_H h +`44$P_  _4K>##4]79h+"~H7 6s> Z ~ @$XC##4_79]4Q+`k?4749@k?k? cD_97/c?4y_7/ HY_ =Z 044y_4?Y4\K/YK?K?@7/@ @K?@ @k?@7_4@k?+oH3 ` 0K?YZ_mJd@?SK?Y@O?Ku;Ks; k?Ku;qKs;y k?Ku>Ks> k?Ku;Ks; k?Ku;Ks; k?Ku>Ks> k?Ku:Ks: k?Ku:Ks: k?Ku;!Ks;) k?Ku;Ks;  k?k?7k?AJk?IIk?aFk?iEk?q4k?yK.k?Q k?Y !4_m7?K?4_}#K?4_]#_}7?!_ @#G"_qK?7?)4_Z_7?1C?-144 `Ka? 4c?EYX_K? DHh?Y74 4 |` 04 ` K?1K?! j`x4_ K?Z\K.K?AK?IK?QK?YK?aK?iK?qK?y@7/4Z_ 3Z_4?_ YK?4_4"c4_ Jy_ Z##Z_79 C7/4c/_yX_Zk?)ӈ7/74_ !@K?7_u7/_ AK?_4_Z7/4##4_ 79c?]7/7/4#_7P 0c?4x?Z_7/f `_ aK?_ QK?54@ @K?@ @k?4_7@Ku?QKs?Y k?Ku;QKs;Y k?Ku=qKs=y k?Ku>Ks>  k?Ku=QKs=Y k?Ku<Ks<  k?Ku>qKs>y k?Ku=Ks=  k?k?ok? 4?Gk?Ek?!C k?Z##_ 79Z_D_ Z"R_@ _5Z!## Z##_m79Z_D_Z!:_ @ Z_Y C_-Z @##4K>K? K?K?K?!@O?X79_44Ka?H3b 4##_a79P/##_A795\4##X_ 79p_AZ}F479_XX##4_79_ZeGk?_o_]D 04` 4K?Y@O?4##_79(_)4@Ku;Ks; k?k?4ok?Ck?H@ @""p `6s"R`` t`"4d@Z!Z_4B +H3 (`!##Z _ 48_ Z+! h< +H3 (b 0+`4K?YK?K?@O?44#P448_ q4?Z_ A@ | h4c` ##_4=4479@_Q@ 4?##479479##479##4m79@##4M79##4-79Ku?Ks? k?k?##4o79 @k?@ 8C_@Z^=D(4K?YK?@O?k?ok?Hk? k?)Ek?14k?9k>7>k? k?! @4 ` C+`5 ?4*P!4^-ZZ^D Z47>@4 `?C4K>K? K?K?K?!K?)K?1K?9@O?^e  YZ^u = ^%ZZ^ D ##4Z_79 h `` HZ^  4 `Z ^@u ^U  4 `Z^e ^ZYZ^- ^Z4 ` EZ4z_  7?~ \ y> ^mZYKu=!Ks=) k?k?44?7k?q4k?QGk?YFk?k?k?!k?)k?1k?9k?Ak?Ik?a\Dk?i+DI7/4#7 p_4^+5+ O+N+MKa?L+H+JZY_]7/4`04?#7?e@@i 0`4?P4?@4?04? 4?4?4?4?4?4?4?4?4?4?4?p4?`4?P4?@4?04? 4?4?i @4?4?4?4?4?4?4?4?p4?`4?P4?@4?5: i H4?4?4?`i 0i H4?4?i 84?i@ XZZI^4]a`M4=45Z4?\K.K?K?K?!K?)K?1K?9K?AK?IK?QK?YK?aK?iK?q@7/Z"d+`6v@44!4S4s @ 36_4!@4?`P4+`4!UӔ |6sX 3 t@ KuK? ,0-K?K?,0,@O?_4Dk?"7@6 K?Y@7?Ku=Ks= k?Ku?1Ks?9 k?Ku=1Ks=9 k?Ku=Ks= k?STk?7k?k?k?1Fk?9Ek?ADk?I7?g?Yk?!k?)4@Xg? :_Z""K Z_`_Z!CZ4##^ 79 440Y_ p aZ7?_=4 `@4\K>K?1K?9K?AK?I@7?Ka?#CH44܂ @7Z @P#C#C47Z ` #C7Z ^M@5447Z (#C^ 7Z 4#CY7Z ^5@4#CY7Z HKu:Ks: k?Ku=Ks= k?Ku>!Ks>) k?Ku>Ks> k?Ku<Ks< k?k?Ka?7k?1k?9Mk?A7? Nk?iGk?Dk?k?Ik?Qk?Yk?ak?qk?y@cH`%jc s444`s$44 4 4 _Z H`$jc 3`# 4\_Z H`#c S` 4\H` H4ec s` 4??4? 03 Ec_%Z?4?4??4\s 7?) 4 5% 03K>K?1K?9K?AK?IK?QK?YK?aK?iK?qK?yK?K?@7?`! s6shZ@@E40@@4h44 4K>K?s  eEK>K?K?֔ s  tT] E4MK>K?K?s ֔ K?! Sֵ E S_uZ=4H` "c ^= 4_}Z=4 _}Z<}4\' 03':G'V# cm6?_Z;@} 03c` t04:4 034 c_Z:4-4k?o^UC@xK?Y7? t 0@4` \ K?Y_K?Y@O?KuK? K?K?@O?Ku;Ks; k?k?7k?!Jk?1Hk?9GZk?A4Fk?I4k?Yk?)k?Q_X4_7? `pKa?IX4 _Z C`@"e d X`PC K?Q\K>K?!K?)K?1K?9K?AK?IK?Y@7?I3v?E7?_@K?K? j_=4^m@ Ku>Ks> k?k?4ok?@` D t "` `st \Y_94z :7 \K?YK?@O? _Z#Ck?7Z x^7#C^u7Z #C^]7Z #C^E7Z (#C^-7Z #C^7Z@#C^7Z#C^7Z#C^7Z#C ^7Z#C ^7Zp#C ^7Z#C ^m7ZpK?Y@7? B@ @? crt0: errno: DLD_PATH/usr/lib/dld.slERROR couldn't open ERROR reading ERROR bad magic number/system id for ERROR bad hpux aux header for (text) (bss) (data)? crt0: errno: tsdUsage: nrpe -c nrpe//dev/nullConfig file '%s' contained errors, bailing out...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 daemonNotes:This program is designed to process requests from the check_nrpeplugin on the host(s) running Nagios. It can run as a serviceunder inetd or xinetd (read the docs for info on this), or as astandalone daemon. Once a request is received from an authorizedhost, NRPE will execute the command/plugin (as defined in theconfig file) and return the plugin output and return code to thecheck_nrpe plugin.***************************************************************NRPE - Nagios Remote Plugin ExecutorCopyright (c) 1999-2003 Ethan Galstad (nagios@nagios.org)Version: %s 2.0Last Modified: %s 09-08-2003License: GPL with exemptions (-l for more info)** POSSIBLE SECURITY RISK - COMMAND ARGUMENTS ARE SUPPORTED! **** Read the NRPE SECURITY file for more information **r= include_dirincludeinclude_fileserver_portserver_addressallowed_hostscommand[Allowed hosts list too long in config file '%s' - Line %d []Invalid command specified in config file '%s' - Line %d debugnrpe_usernrpe_groupdont_blame_nrpecommand_timeoutUnknown option specified in config file '%s' - Line %d Invalid command_timeout specified in config file '%s' - Line %d Invalid port number specified in config file '%s' - Line %d No variable value specified in config file '%s' - Line %d No variable name specified in config file '%s' - Line %d Unable to open config file '%s' for reading %s/%s.cfgCould not open config directory '%s' for reading. Added command[%s]=%s Starting up daemon%sHost address checks out okConnection from %s closed.Host %s is not allowed to talk to us!Connection from %s port %dError: Network server getpeername() failure (%d: %s)Network server accept failure (%d: %s)Listening for connections on port %d Allowing connections from: %s Warning: Daemon is configured to accept command arguments from clients!Network server listen failure (%d: %s) Network server bind failure (%d: %s) Server address is not a valid IP address Could not set reuse address option on socket! Network server socket failure (%d: %s)@Data packet from client was too short, bailing out..._NRPE_CHECKNRPE v%sResponse: %sReturn Code: %d, Output: %sNRPE: Unable to read output Bad return code for [%s]: %dNRPE: Command timed out after %d seconds Command completed with return code %d and output: %sRunning command: %sNRPE: Command '%s' not definedHost is asking for command '%s' to be run...Client request was invalid, bailing out...Could not read request from client, bailing out...Handling the connection...,NRPE: Call to popen() failed NRPE: Call to fork() failed @0123456789Warning: Could not set effective GID=%dWarning: Could not set effective UID=%dWarning: Unable to change supplementary groups using initgroups()Warning: Possibly root user failed dropping privileges with initgroups()Warning: Could not get passwd entry for '%s'Warning: Could not get group entry for '%s'Error: NRPE daemon cannot be run as user/group root!Error: Request contained command arguments, but argument option is not enabled!!Error: Request contained an empty command argumentError: Memory allocation failedError: Request contained illegal metachars!Error: Request contained no query!Error: Request packet type/version was invalid!Error: Request packet had invalid CRC32.|`&><'"\[]{}$ARGc:nidhl/dev/urandomr@R?tcpudpTimeout while attempting connectionConnection refused by hostNetwork is unreachableConnection refused or timed outSocket creation failedCannot map "%s" to protocol number Invalid host name '%s' This program is released under the GPL (see below) with the additionalexemption that compiling, linking, and/or using OpenSSL is allowed. This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details. You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  $8<H $$((,,004LPPTTX$(48TX!!%8%%%%%&L&P&T&X&t&x&&&&&&&&'''4'8'T'X't'x''''((((((**+4+8+++++++-x1(16` 067078899><>pC, C0CCCCDEGGGHJ`JhJJLPLpLLNNQ QQQRRhSTDSXStSU\UY YY`YZZ [0[P[[\\\P h + + l10 06h 7 8 9 <>@ C D <G G 0J LX N R Sx U` Yh Z [8 @$Revision: 92453-07 linker linker crt0.o B.11.13 DBG 990903 $ERROR: mmap failed for dldERROR: mmap failed for TSDnrpe.cfg"0.0.0.0 <9h,9 ,-0DU`1xD7D10D9RPH7D8D 8DDh,pJhZHpU1H1R R8,+-6-H6,(+9YhH-NS1`HX,H(169P,UxSx9SH@UU,@,X-`+H[8981DDP6h>@19LX,S9G>X9CGP@ @@ @ +Qnrpe.c/home/benny/temp/nrpe-2.0/src/nrpe.cgcc2_compiled.int:t1=r1;-2147483648;2147483647;char:t2=r2;0;127;long int:t3=r3;-2147483648;2147483647;unsigned int:t4=r4;0000000000000;0037777777777;long unsigned int:t5=r5;0000000000000;0037777777777;long long int:t6=@s64;r6;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=@s64;r7;0000000000000;01777777777777777777777;short int:t8=@s16;r8;-32768;32767;short unsigned int:t9=@s16;r9;0;65535;signed char:t10=@s8;r10;-128;127;unsigned char:t11=@s8;r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;16;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=R3;8;0;complex double:t17=R4;16;0;complex long double:t18=R5;32;0;__builtin_va_list:t19=*20=20_Bool:t21=@s8;-16;__gnuc_va_list:t22=19int8_t:t23=2uint8_t:t24=11int16_t:t25=8uint16_t:t26=9int32_t:t27=1uint32_t:t28=4intfast_t:t29=1uintfast_t:t30=4int64_t:t31=6uint64_t:t32=7intmax_t:t33=31uintmax_t:t34=32intptr_t:t35=3uintptr_t:t36=5int_least8_t:t37=2uint_least8_t:t38=11int_fast8_t:t39=1uint_fast8_t:t40=4int_least16_t:t41=8uint_least16_t:t42=9int_fast16_t:t43=1uint_fast16_t:t44=4int_least32_t:t45=1uint_least32_t:t46=4int_fast32_t:t47=1uint_fast32_t:t48=4int_least64_t:t49=31int_fast64_t:t50=31uint_least64_t:t51=32uint_fast64_t:t52=32ptr32_t:t53=28mqd_t:t54=1dev_t:t55=27ino32_t:t56=28ino64_t:t57=32ino_t:t58=5mode_t:t59=26nlink_t:t60=26fpos32_t:t61=27fpos64_t:t62=31fpos_t:t63=3fsblkcnt32_t:t64=28fsblkcnt64_t:t65=32fsblkcnt_t:t66=5off32_t:t67=27off64_t:t68=31off_t:t69=3fsfilcnt32_t:t70=28fsfilcnt64_t:t71=32fsfilcnt_t:t72=5blkcnt32_t:t73=27blkcnt64_t:t74=31blkcnt_t:t75=3pid_t:t76=27lwpid_t:t77=27gid_t:t78=27uid_t:t79=27tid_t:t80=27ssize_t:t81=3__site_t:t82=26__cnode_t:t83=26time_t:t84=3size_t:t85=5clock_t:t86=28key_t:t87=27__ushort:t88=9__daddr_t:t89=27__caddr_t:t90=91=*2__swblk_t:t92=27caddr_t:t93=90id_t:t94=27useconds_t:t95=28rlim32_t:t96=28rlim64_t:t97=32rlim_t:t98=5site_t:t99=82u_char:t100=11u_short:t101=9u_int:t102=4u_long:t103=5uint:t104=4ushort:t105=9ubit8:t106=11ubit16:t107=9ubit32:t108=28sbit8:t109=2sbit16:t110=8sbit32:t111=27swblk_t:t112=92daddr_t:t113=89cnode_t:t114=83paddr_t:t115=36page_t:t116=35pgcnt_t:t117=27physpfn_t:t118=28iophyspfn_t:t119=36pgaddr_t:t120=36space_t:t121=28prot_t:t122=28ulong_t:t123=5cnt_t:t124=25cdno_t:t125=28use_t:t126=26_physadr:T127=s4r:128=ar129=r129;0000000000000;0037777777777;;0;0;35,0,32;;physadr:t130=131=*127_quad:T132=s8val:133=ar129;0;1;3,0,64;;quad:t134=132spu_t:t135=1cpu_t:t136=8label_t:T137=s160lbl_rp:27,0,32;lbl_sp:27,32,32;lbl_s:138=ar129;0;16;27,64,544;lbl_ss:139=ar129;0;0;27,608,32;lbl_sf:140=ar129;0;9;13,640,640;;label_t:t141=137lkinfo:T142=s16lk_name:91,0,32;lk_flags:1,32,32;lk_pad:133,64,64;;lkinfo_t:t143=142pl_t:t144=5dm_message:t145=91aid_t:t146=27sid_t:t147=76__fd_mask:t148=27fd_set:T149=s256fds_bits:150=ar129;0;63;3,0,2048;;fd_set:t151=149fd_mask:t152=148dir_off_t:t153=27FILE:t154=155=s16__cnt:1,0,32;__ptr:156=*11,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t157=158=s44__cnt:1,0,32;__ptr:156,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:156,128,32;__newbase:156,160,32;__smbuf:159=ar129;0;15;11,192,128;__unused:160=*20,320,32;;__va_list:t161=162=*13__not_va_list__:t163=162div_t:t164=165=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t166=167=s8quot:3,0,32;rem:3,32,32;;wchar_t:t168=4sigval:T169=u4__svi_int_s:170=s4__svi_int:1,0,32;;,0,32;__sival_ptr:160,0,32;;sigval_t:t171=169pthread_attr_t:t172=1sigevent:T173=s52__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:171,64,32;__sigev_notify_function:174=*175=f20,96,32;__sigev_notify_attributes:176=*172,128,32;__sigev_reserved:177=ar129;0;7;1,160,256;;sigevent_t:t178=173__sigev_types:T179=e__SIGEV_NONE:1,__SIGEV_SIGNAL:2,__SIGEV_THREAD:3,;tm:T180=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T181=s8tv_sec:84,0,32;tv_nsec:3,32,32;;timestruc_t:t182=181itimerspec:T183=s16it_interval:181,0,64;it_value:181,64,64;;__clockid_t:T184=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t185=184timer_t:t186=5timeval:T187=s8tv_sec:84,0,32;tv_usec:3,32,32;;itimerval:T188=s16it_interval:187,0,64;it_value:187,64,64;;timezone:T189=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T190=s8hi:28,0,32;lo:28,32,32;;cycles_t:t191=190ki_timeval:T192=s8pad1:28,0,32;pad2:28,32,32;;kt_t:t193=32rlimit:T194=s8rlim_cur:98,0,32;rlim_max:98,32,32;;rusage:T195=s76ru_utime:187,0,64;ru_stime:187,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T196=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T197=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:171,96,32;__data:198=u12__proc:199=s8__pid:76,0,32;__pdata:200=u4__kill:201=s4__uid:79,0,32;;,0,32;__SIGCLD:202=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:203=s4__addr:160,0,32;;,0,32;__file:204=s8__fd:1,0,32;__band:3,32,32;;,0,64;__gfault:205=s12__addr:160,0,32;__lockpage:160,32,32;__dev_id:3,64,32;;,0,96;;,128,96;__pad:206=ar129;0;8;3,224,288;;siginfo_t:t207=197__sigset_t:T208=s32sigset:209=ar129;0;7;4,0,256;;sigset_t:t210=208__fp_dbl_block:T211=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t212=211__fp_int_block:T213=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t214=213__reg64:T215=s512ss_reserved:31,0,64;ss_gr1:31,64,64;ss_rp:31,128,64;ss_gr3:31,192,64;ss_gr4:31,256,64;ss_gr5:31,320,64;ss_gr6:31,384,64;ss_gr7:31,448,64;ss_gr8:31,512,64;ss_gr9:31,576,64;ss_gr10:31,640,64;ss_gr11:31,704,64;ss_gr12:31,768,64;ss_gr13:31,832,64;ss_gr14:31,896,64;ss_gr15:31,960,64;ss_gr16:31,1024,64;ss_gr17:31,1088,64;ss_gr18:31,1152,64;ss_gr19:31,1216,64;ss_gr20:31,1280,64;ss_gr21:31,1344,64;ss_gr22:31,1408,64;ss_arg3:31,1472,64;ss_arg2:31,1536,64;ss_arg1:31,1600,64;ss_arg0:31,1664,64;ss_dp:32,1728,64;ss_ret0:32,1792,64;ss_ret1:32,1856,64;ss_sp:32,1920,64;ss_gr31:32,1984,64;ss_cr11:32,2048,64;ss_pcoq_head:32,2112,64;ss_pcsq_head:32,2176,64;ss_pcoq_tail:32,2240,64;ss_pcsq_tail:32,2304,64;ss_cr15:32,2368,64;ss_cr19:32,2432,64;ss_cr20:32,2496,64;ss_cr21:32,2560,64;ss_cr22:32,2624,64;ss_cpustate:32,2688,64;ss_sr4:32,2752,64;ss_sr0:32,2816,64;ss_sr1:32,2880,64;ss_sr2:32,2944,64;ss_sr3:32,3008,64;ss_sr5:32,3072,64;ss_sr6:32,3136,64;ss_sr7:32,3200,64;ss_cr0:32,3264,64;ss_cr8:32,3328,64;ss_cr9:32,3392,64;ss_cr10:32,3456,64;ss_cr12:32,3520,64;ss_cr13:32,3584,64;ss_cr24:32,3648,64;ss_cr25:32,3712,64;ss_cr26:32,3776,64;ss_cr27:32,3840,64;ss_reserved2:216=ar129;0;1;32,3904,128;ss_oldcksum:28,4032,32;ss_newcksum:28,4064,32;;__reg64_t:t217=215__reg32:T218=s512ss_reserved:219=ar129;0;1;28,0,64;ss_gr1_hi:28,64,32;ss_gr1_lo:28,96,32;ss_rp_hi:28,128,32;ss_rp_lo:28,160,32;ss_gr3_hi:28,192,32;ss_gr3_lo:28,224,32;ss_gr4_hi:28,256,32;ss_gr4_lo:28,288,32;ss_gr5_hi:28,320,32;ss_gr5_lo:28,352,32;ss_gr6_hi:28,384,32;ss_gr6_lo:28,416,32;ss_gr7_hi:28,448,32;ss_gr7_lo:28,480,32;ss_gr8_hi:28,512,32;ss_gr8_lo:28,544,32;ss_gr9_hi:28,576,32;ss_gr9_lo:28,608,32;ss_gr10_hi:28,640,32;ss_gr10_lo:28,672,32;ss_gr11_hi:28,704,32;ss_gr11_lo:28,736,32;ss_gr12_hi:28,768,32;ss_gr12_lo:28,800,32;ss_gr13_hi:28,832,32;ss_gr13_lo:28,864,32;ss_gr14_hi:28,896,32;ss_gr14_lo:28,928,32;ss_gr15_hi:28,960,32;ss_gr15_lo:28,992,32;ss_gr16_hi:28,1024,32;ss_gr16_lo:28,1056,32;ss_gr17_hi:28,1088,32;ss_gr17_lo:28,1120,32;ss_gr18_hi:28,1152,32;ss_gr18_lo:28,1184,32;ss_gr19_hi:28,1216,32;ss_gr19_lo:28,1248,32;ss_gr20_hi:28,1280,32;ss_gr20_lo:28,1312,32;ss_gr21_hi:28,1344,32;ss_gr21_lo:28,1376,32;ss_gr22_hi:28,1408,32;ss_gr22_lo:28,1440,32;ss_arg3_hi:28,1472,32;ss_arg3_lo:28,1504,32;ss_arg2_hi:28,1536,32;ss_arg2_lo:28,1568,32;ss_arg1_hi:28,1600,32;ss_arg1_lo:28,1632,32;ss_arg0_hi:28,1664,32;ss_arg0_lo:28,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_cr27_hi:4,3840,32;ss_cr27_lo:4,3872,32;ss_reserved2:220=ar129;0;3;4,3904,128;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t221=218__ss_narrow:T222=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_cr27:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t223=222__save_state:T224=s1152ss_flags:1,0,32;ss_narrow:223,32,1984;ss_pad:1,2016,32;ss_fpblock:225=u256fpdbl:212,0,2048;fpint:214,0,2048;;,2048,2048;ss_xor:226=ar129;0;127;2,4096,1024;ss_wide:227=u512ss_64:217,0,4096;ss_32:221,0,4096;;,5120,4096;;save_state_t:t228=224__stack:T229=s12ss_sp:160,0,32;ss_flags:1,32,32;ss_size:85,64,32;;stack_t:t230=229mcontext_t:t231=228__sub_ctxt:T232=s48__uc_link:233=*234=xs__ucontext:,0,32;__uc_sigmask:210,32,256;__uc_stack:230,288,96;;__sub_ctxt_t:t235=232__ucontext:T234=s1240uc_mcontext:231,0,9216;uc_spares:177,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:232,9504,384;;ucontext_t:t236=234sig_atomic_t:t237=4sigaction:T238=s40__handler:239=u4__sa_sigaction:240=*241=f20,0,32;__sa_handler:242=*243=f20,0,32;;,0,32;sa_mask:210,32,256;sa_flags:1,288,32;;pthread_t:t244=1sigstack:T245=s8ss_sp:160,0,32;ss_onstack:1,32,32;;sigvec:T246=s12sv_handler:242,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T247=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t248=247siglocal_misc:T249=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:3,128,32;sm_rval2:3,160,32;sm_arg:250=ar129;0;3;3,192,128;;siglocal_misc_t:t251=249siglocal:T252=s1192sl_misc:249,0,320;sl_ss:228,320,9216;;siglocalx:T253=s1344sl_misc:249,0,320;sl_uc:236,320,9920;sl_si:207,10240,512;;__xsi:T254=s116sc:232,0,384;__padding:1,384,32;si:207,416,512;;__xsi_t:t255=254sigcontext:T256=s1392sc_ctxt:257=u1344sl:252,0,9536;sx:253,0,10752;;,0,10752;sc_args:250,10752,128;sc_sfm:247,10880,256;; :T258=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t259=258wait:T260=u4w_status:1,0,32;w_T:261=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:262=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T263=s40arena:27,0,32;ordblks:27,32,32;smblks:27,64,32;hblks:27,96,32;hblkhd:27,128,32;usmblks:27,160,32;fsmblks:27,192,32;uordblks:27,224,32;fordblks:27,256,32;keepcost:27,288,32;;passwd:T264=s44pw_name:91,0,32;pw_passwd:91,32,32;pw_uid:79,64,32;pw_gid:78,96,32;pw_age:91,128,32;pw_comment:91,160,32;pw_gecos:91,192,32;pw_dir:91,224,32;pw_shell:91,256,32;pw_audid:27,288,32;pw_audflg:1,320,32;;s_passwd:T265=s20pw_name:91,0,32;pw_passwd:91,32,32;pw_age:91,64,32;pw_audid:27,96,32;pw_audflg:1,128,32;;u_int32_t:t266=4utimbuf:T267=s8actime:84,0,32;modtime:84,32,32;;stat:T268=s104st_dev:55,0,32;st_ino:58,32,32;st_mode:59,64,16;st_nlink:60,80,16;st_reserved1:9,96,16;st_reserved2:9,112,16;st_rdev:55,128,32;st_size:69,160,32;st_atime:84,192,32;st_spare1:1,224,32;st_mtime:84,256,32;st_spare2:1,288,32;st_ctime:84,320,32;st_spare3:1,352,32;st_blksize:3,384,32;st_blocks:75,416,32;st_pad:4,448,29;st_sysVacl:4,477,1;st_acl:4,478,1;st_remote:4,479,1;st_netdev:55,480,32;st_netino:58,512,32;st_cnode:83,544,16;st_rcnode:83,560,16;st_netsite:82,576,16;st_fstype:8,592,16;st_realdev:55,608,32;st_basemode:9,640,16;st_spareshort:9,656,16;st_uid:79,672,32;st_gid:78,704,32;st_spare4:269=ar129;0;2;27,736,96;;flock:T270=s16l_type:8,0,16;l_whence:8,16,16;l_start:69,32,32;l_len:69,64,32;l_pid:76,96,32;;hrtime_t:t271=31iovec:T272=s8iov_base:160,0,32;iov_len:85,32,32;;uio_rw:T273=eUIO_READ:1,UIO_WRITE:2,;linger:T274=s8l_onoff:1,0,32;l_linger:1,32,32;;socklen_t:t275=85sockaddr:T276=s16sa_family:9,0,16;sa_data:277=ar129;0;13;2,16,112;;sockproto:T278=s4sp_family:9,0,16;sp_protocol:9,16,16;;msghdr:T279=s24msg_name:93,0,32;msg_namelen:1,32,32;msg_iov:280=*272,64,32;msg_iovlen:1,96,32;msg_accrights:93,128,32;msg_accrightslen:1,160,32;;msghdr2:T281=s28msg_name:93,0,32;msg_namelen:275,32,32;msg_iov:280,64,32;msg_iovlen:102,96,32;msg_control:93,128,32;msg_controllen:275,160,32;msg_flags:1,192,32;;in_addr_t:t282=5in_addr:T283=s4s_addr:282,0,32;;sockaddr_in:T284=s16sin_family:8,0,16;sin_port:101,16,16;sin_addr:283,32,32;sin_zero:285=ar129;0;7;2,64,64;;ip_mreq:T286=s8imr_multiaddr:283,0,32;imr_interface:283,32,32;;hostent:T287=s20h_name:91,0,32;h_aliases:288=*91,32,32;h_addrtype:1,64,32;h_length:1,96,32;h_addr_list:288,128,32;;netent:T289=s16n_name:91,0,32;n_aliases:288,32,32;n_addrtype:1,64,32;n_net:282,96,32;;servent:T290=s16s_name:91,0,32;s_aliases:288,32,32;s_port:1,64,32;s_proto:91,96,32;;protoent:T291=s12p_name:91,0,32;p_aliases:288,32,32;p_proto:1,64,32;;rpcent:T292=s12r_name:91,0,32;r_aliases:288,32,32;r_number:1,64,32;;group:T293=s16gr_name:91,0,32;gr_passwd:91,32,32;gr_gid:78,64,32;gr_mem:288,96,32;;dirent:T294=s264d_ino:58,0,32;d_reclen:8,32,16;d_namlen:8,48,16;d_name:295=ar129;0;255;2,64,2048;;__dirdesc:T296=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;DIR:t297=296_dirdesc:T298=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;ptrdiff_t:t299=3wint_t:t300=4wctype_t:t301=4packet_struct:T302=s1036packet_version:25,0,16;packet_type:25,16,16;crc32_value:266,32,32;result_code:25,64,16;buffer:303=ar129;0;1023;2,80,8192;;packet:t304=302command_struct:T305=s1060command_name:306=ar129;0;31;2,0,256;command_line:303,256,8192;next:307=*305,8448,32;;command:t308=305main:F1argc:P1argv:P288result:r1x:r1buffer:309=ar129;0;2047;2read_config_file:F1filename:P91fp:r310=*154config_file:295input_buffer:309temp_buffer:r91varname:r91varvalue:r91line:r1read_config_dir:F1dirname:P91config_file:295dirp:r311=*297dirfile:r312=*294result:r1add_command:F1command_name:P91command_line:P91new_command:r313=*308find_command:F313command_name:P91temp_command:r313wait_for_connections:F20myname:284addr:276rc:r1sock:r1new_sd:r1addrlen:275connecting_host:314=ar129;0;15;2pid:r76flag:1handle_connection:F20sock:P1calculated_crc32:r266temp_command:r313receive_packet:304send_packet:304bytes_to_send:1bytes_to_recv:1buffer:309raw_command:309processed_command:309result:r1early_timeout:1rc:r1x:r1is_an_allowed_host:F1connecting_host:P91temp_buffer:309temp_ptr:r91sighandler:F20sig:P1free_memory:F20this_command:r313next_command:r313my_system:F1command:P91timeout:P1early_timeout:P315=*1output:P91output_length:p1output_length:r1pid:r76status:1result:r1buffer:309fd:316=ar129;0;1;1fp:r310bytes_read:r1start_time:84end_time:84pid:r76status:1result:r1buffer:309fd:316fp:r310bytes_read:r1start_time:84end_time:84my_system_sighandler:F20sig:P1drop_privileges:F1user:P91group:P91uid:r79gid:r78grp:r317=*293pw:r318=*264check_privileges:F1uid:r79gid:r78validate_request:F1pkt:P319=*304packet_crc32:r266calculated_crc32:r266ptr:r91x:r1contains_nasty_metachars:F1str:P91process_macros:F1input_buffer:p91output_buffer:P91buffer_length:P1temp_buffer:r91in_macro:r1arg_index:r1selected_macro:r91temp_buffer:r91in_macro:r1arg_index:r1selected_macro:r91process_arguments:F1argc:P1argv:P288optchars:309c:r1have_mode:r1optchars:309c:r1have_mode:r1command_name:G91macro_argv:G320=ar129;0;15;91config_file:G309allowed_hosts:G309server_port:G1server_address:G314socket_timeout:G1command_timeout:G1command_list:G313nrpe_user:G91nrpe_group:G91allow_arguments:G1show_help:G1show_license:G1show_version:G1use_inetd:G1debug:G1use_ssl:G1utils.c/home/benny/temp/nrpe-2.0/src/utils.cgcc2_compiled.int:t1=r1;-2147483648;2147483647;char:t2=r2;0;127;long int:t3=r3;-2147483648;2147483647;unsigned int:t4=r4;0000000000000;0037777777777;long unsigned int:t5=r5;0000000000000;0037777777777;long long int:t6=@s64;r6;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=@s64;r7;0000000000000;01777777777777777777777;short int:t8=@s16;r8;-32768;32767;short unsigned int:t9=@s16;r9;0;65535;signed char:t10=@s8;r10;-128;127;unsigned char:t11=@s8;r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;16;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=R3;8;0;complex double:t17=R4;16;0;complex long double:t18=R5;32;0;__builtin_va_list:t19=*20=20_Bool:t21=@s8;-16;__gnuc_va_list:t22=19int8_t:t23=2uint8_t:t24=11int16_t:t25=8uint16_t:t26=9int32_t:t27=1uint32_t:t28=4intfast_t:t29=1uintfast_t:t30=4int64_t:t31=6uint64_t:t32=7intmax_t:t33=31uintmax_t:t34=32intptr_t:t35=3uintptr_t:t36=5int_least8_t:t37=2uint_least8_t:t38=11int_fast8_t:t39=1uint_fast8_t:t40=4int_least16_t:t41=8uint_least16_t:t42=9int_fast16_t:t43=1uint_fast16_t:t44=4int_least32_t:t45=1uint_least32_t:t46=4int_fast32_t:t47=1uint_fast32_t:t48=4int_least64_t:t49=31int_fast64_t:t50=31uint_least64_t:t51=32uint_fast64_t:t52=32ptr32_t:t53=28mqd_t:t54=1dev_t:t55=27ino32_t:t56=28ino64_t:t57=32ino_t:t58=5mode_t:t59=26nlink_t:t60=26fpos32_t:t61=27fpos64_t:t62=31fpos_t:t63=3fsblkcnt32_t:t64=28fsblkcnt64_t:t65=32fsblkcnt_t:t66=5off32_t:t67=27off64_t:t68=31off_t:t69=3fsfilcnt32_t:t70=28fsfilcnt64_t:t71=32fsfilcnt_t:t72=5blkcnt32_t:t73=27blkcnt64_t:t74=31blkcnt_t:t75=3pid_t:t76=27lwpid_t:t77=27gid_t:t78=27uid_t:t79=27tid_t:t80=27ssize_t:t81=3__site_t:t82=26__cnode_t:t83=26time_t:t84=3size_t:t85=5clock_t:t86=28key_t:t87=27__ushort:t88=9__daddr_t:t89=27__caddr_t:t90=91=*2__swblk_t:t92=27caddr_t:t93=90id_t:t94=27useconds_t:t95=28rlim32_t:t96=28rlim64_t:t97=32rlim_t:t98=5site_t:t99=82u_char:t100=11u_short:t101=9u_int:t102=4u_long:t103=5uint:t104=4ushort:t105=9ubit8:t106=11ubit16:t107=9ubit32:t108=28sbit8:t109=2sbit16:t110=8sbit32:t111=27swblk_t:t112=92daddr_t:t113=89cnode_t:t114=83paddr_t:t115=36page_t:t116=35pgcnt_t:t117=27physpfn_t:t118=28iophyspfn_t:t119=36pgaddr_t:t120=36space_t:t121=28prot_t:t122=28ulong_t:t123=5cnt_t:t124=25cdno_t:t125=28use_t:t126=26_physadr:T127=s4r:128=ar129=r129;0000000000000;0037777777777;;0;0;35,0,32;;physadr:t130=131=*127_quad:T132=s8val:133=ar129;0;1;3,0,64;;quad:t134=132spu_t:t135=1cpu_t:t136=8label_t:T137=s160lbl_rp:27,0,32;lbl_sp:27,32,32;lbl_s:138=ar129;0;16;27,64,544;lbl_ss:139=ar129;0;0;27,608,32;lbl_sf:140=ar129;0;9;13,640,640;;label_t:t141=137lkinfo:T142=s16lk_name:91,0,32;lk_flags:1,32,32;lk_pad:133,64,64;;lkinfo_t:t143=142pl_t:t144=5dm_message:t145=91aid_t:t146=27sid_t:t147=76__fd_mask:t148=27fd_set:T149=s256fds_bits:150=ar129;0;63;3,0,2048;;fd_set:t151=149fd_mask:t152=148dir_off_t:t153=27FILE:t154=155=s16__cnt:1,0,32;__ptr:156=*11,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t157=158=s44__cnt:1,0,32;__ptr:156,32,32;__base:156,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:156,128,32;__newbase:156,160,32;__smbuf:159=ar129;0;15;11,192,128;__unused:160=*20,320,32;;__va_list:t161=162=*13__not_va_list__:t163=162div_t:t164=165=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t166=167=s8quot:3,0,32;rem:3,32,32;;wchar_t:t168=4sigval:T169=u4__svi_int_s:170=s4__svi_int:1,0,32;;,0,32;__sival_ptr:160,0,32;;sigval_t:t171=169pthread_attr_t:t172=1sigevent:T173=s52__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:171,64,32;__sigev_notify_function:174=*175=f20,96,32;__sigev_notify_attributes:176=*172,128,32;__sigev_reserved:177=ar129;0;7;1,160,256;;sigevent_t:t178=173__sigev_types:T179=e__SIGEV_NONE:1,__SIGEV_SIGNAL:2,__SIGEV_THREAD:3,;tm:T180=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T181=s8tv_sec:84,0,32;tv_nsec:3,32,32;;timestruc_t:t182=181itimerspec:T183=s16it_interval:181,0,64;it_value:181,64,64;;__clockid_t:T184=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t185=184timer_t:t186=5timeval:T187=s8tv_sec:84,0,32;tv_usec:3,32,32;;itimerval:T188=s16it_interval:187,0,64;it_value:187,64,64;;timezone:T189=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T190=s8hi:28,0,32;lo:28,32,32;;cycles_t:t191=190ki_timeval:T192=s8pad1:28,0,32;pad2:28,32,32;;kt_t:t193=32rlimit:T194=s8rlim_cur:98,0,32;rlim_max:98,32,32;;rusage:T195=s76ru_utime:187,0,64;ru_stime:187,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T196=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T197=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:171,96,32;__data:198=u12__proc:199=s8__pid:76,0,32;__pdata:200=u4__kill:201=s4__uid:79,0,32;;,0,32;__SIGCLD:202=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:203=s4__addr:160,0,32;;,0,32;__file:204=s8__fd:1,0,32;__band:3,32,32;;,0,64;__gfault:205=s12__addr:160,0,32;__lockpage:160,32,32;__dev_id:3,64,32;;,0,96;;,128,96;__pad:206=ar129;0;8;3,224,288;;siginfo_t:t207=197__sigset_t:T208=s32sigset:209=ar129;0;7;4,0,256;;sigset_t:t210=208__fp_dbl_block:T211=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t212=211__fp_int_block:T213=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t214=213__reg64:T215=s512ss_reserved:31,0,64;ss_gr1:31,64,64;ss_rp:31,128,64;ss_gr3:31,192,64;ss_gr4:31,256,64;ss_gr5:31,320,64;ss_gr6:31,384,64;ss_gr7:31,448,64;ss_gr8:31,512,64;ss_gr9:31,576,64;ss_gr10:31,640,64;ss_gr11:31,704,64;ss_gr12:31,768,64;ss_gr13:31,832,64;ss_gr14:31,896,64;ss_gr15:31,960,64;ss_gr16:31,1024,64;ss_gr17:31,1088,64;ss_gr18:31,1152,64;ss_gr19:31,1216,64;ss_gr20:31,1280,64;ss_gr21:31,1344,64;ss_gr22:31,1408,64;ss_arg3:31,1472,64;ss_arg2:31,1536,64;ss_arg1:31,1600,64;ss_arg0:31,1664,64;ss_dp:32,1728,64;ss_ret0:32,1792,64;ss_ret1:32,1856,64;ss_sp:32,1920,64;ss_gr31:32,1984,64;ss_cr11:32,2048,64;ss_pcoq_head:32,2112,64;ss_pcsq_head:32,2176,64;ss_pcoq_tail:32,2240,64;ss_pcsq_tail:32,2304,64;ss_cr15:32,2368,64;ss_cr19:32,2432,64;ss_cr20:32,2496,64;ss_cr21:32,2560,64;ss_cr22:32,2624,64;ss_cpustate:32,2688,64;ss_sr4:32,2752,64;ss_sr0:32,2816,64;ss_sr1:32,2880,64;ss_sr2:32,2944,64;ss_sr3:32,3008,64;ss_sr5:32,3072,64;ss_sr6:32,3136,64;ss_sr7:32,3200,64;ss_cr0:32,3264,64;ss_cr8:32,3328,64;ss_cr9:32,3392,64;ss_cr10:32,3456,64;ss_cr12:32,3520,64;ss_cr13:32,3584,64;ss_cr24:32,3648,64;ss_cr25:32,3712,64;ss_cr26:32,3776,64;ss_cr27:32,3840,64;ss_reserved2:216=ar129;0;1;32,3904,128;ss_oldcksum:28,4032,32;ss_newcksum:28,4064,32;;__reg64_t:t217=215__reg32:T218=s512ss_reserved:219=ar129;0;1;28,0,64;ss_gr1_hi:28,64,32;ss_gr1_lo:28,96,32;ss_rp_hi:28,128,32;ss_rp_lo:28,160,32;ss_gr3_hi:28,192,32;ss_gr3_lo:28,224,32;ss_gr4_hi:28,256,32;ss_gr4_lo:28,288,32;ss_gr5_hi:28,320,32;ss_gr5_lo:28,352,32;ss_gr6_hi:28,384,32;ss_gr6_lo:28,416,32;ss_gr7_hi:28,448,32;ss_gr7_lo:28,480,32;ss_gr8_hi:28,512,32;ss_gr8_lo:28,544,32;ss_gr9_hi:28,576,32;ss_gr9_lo:28,608,32;ss_gr10_hi:28,640,32;ss_gr10_lo:28,672,32;ss_gr11_hi:28,704,32;ss_gr11_lo:28,736,32;ss_gr12_hi:28,768,32;ss_gr12_lo:28,800,32;ss_gr13_hi:28,832,32;ss_gr13_lo:28,864,32;ss_gr14_hi:28,896,32;ss_gr14_lo:28,928,32;ss_gr15_hi:28,960,32;ss_gr15_lo:28,992,32;ss_gr16_hi:28,1024,32;ss_gr16_lo:28,1056,32;ss_gr17_hi:28,1088,32;ss_gr17_lo:28,1120,32;ss_gr18_hi:28,1152,32;ss_gr18_lo:28,1184,32;ss_gr19_hi:28,1216,32;ss_gr19_lo:28,1248,32;ss_gr20_hi:28,1280,32;ss_gr20_lo:28,1312,32;ss_gr21_hi:28,1344,32;ss_gr21_lo:28,1376,32;ss_gr22_hi:28,1408,32;ss_gr22_lo:28,1440,32;ss_arg3_hi:28,1472,32;ss_arg3_lo:28,1504,32;ss_arg2_hi:28,1536,32;ss_arg2_lo:28,1568,32;ss_arg1_hi:28,1600,32;ss_arg1_lo:28,1632,32;ss_arg0_hi:28,1664,32;ss_arg0_lo:28,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_cr27_hi:4,3840,32;ss_cr27_lo:4,3872,32;ss_reserved2:220=ar129;0;3;4,3904,128;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t221=218__ss_narrow:T222=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_cr27:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t223=222__save_state:T224=s1152ss_flags:1,0,32;ss_narrow:223,32,1984;ss_pad:1,2016,32;ss_fpblock:225=u256fpdbl:212,0,2048;fpint:214,0,2048;;,2048,2048;ss_xor:226=ar129;0;127;2,4096,1024;ss_wide:227=u512ss_64:217,0,4096;ss_32:221,0,4096;;,5120,4096;;save_state_t:t228=224__stack:T229=s12ss_sp:160,0,32;ss_flags:1,32,32;ss_size:85,64,32;;stack_t:t230=229mcontext_t:t231=228__sub_ctxt:T232=s48__uc_link:233=*234=xs__ucontext:,0,32;__uc_sigmask:210,32,256;__uc_stack:230,288,96;;__sub_ctxt_t:t235=232__ucontext:T234=s1240uc_mcontext:231,0,9216;uc_spares:177,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:232,9504,384;;ucontext_t:t236=234sig_atomic_t:t237=4sigaction:T238=s40__handler:239=u4__sa_sigaction:240=*241=f20,0,32;__sa_handler:242=*243=f20,0,32;;,0,32;sa_mask:210,32,256;sa_flags:1,288,32;;pthread_t:t244=1sigstack:T245=s8ss_sp:160,0,32;ss_onstack:1,32,32;;sigvec:T246=s12sv_handler:242,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T247=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t248=247siglocal_misc:T249=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:3,128,32;sm_rval2:3,160,32;sm_arg:250=ar129;0;3;3,192,128;;siglocal_misc_t:t251=249siglocal:T252=s1192sl_misc:249,0,320;sl_ss:228,320,9216;;siglocalx:T253=s1344sl_misc:249,0,320;sl_uc:236,320,9920;sl_si:207,10240,512;;__xsi:T254=s116sc:232,0,384;__padding:1,384,32;si:207,416,512;;__xsi_t:t255=254sigcontext:T256=s1392sc_ctxt:257=u1344sl:252,0,9536;sx:253,0,10752;;,0,10752;sc_args:250,10752,128;sc_sfm:247,10880,256;; :T258=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t259=258wait:T260=u4w_status:1,0,32;w_T:261=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:262=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T263=s40arena:27,0,32;ordblks:27,32,32;smblks:27,64,32;hblks:27,96,32;hblkhd:27,128,32;usmblks:27,160,32;fsmblks:27,192,32;uordblks:27,224,32;fordblks:27,256,32;keepcost:27,288,32;;passwd:T264=s44pw_name:91,0,32;pw_passwd:91,32,32;pw_uid:79,64,32;pw_gid:78,96,32;pw_age:91,128,32;pw_comment:91,160,32;pw_gecos:91,192,32;pw_dir:91,224,32;pw_shell:91,256,32;pw_audid:27,288,32;pw_audflg:1,320,32;;s_passwd:T265=s20pw_name:91,0,32;pw_passwd:91,32,32;pw_age:91,64,32;pw_audid:27,96,32;pw_audflg:1,128,32;;u_int32_t:t266=4utimbuf:T267=s8actime:84,0,32;modtime:84,32,32;;stat:T268=s104st_dev:55,0,32;st_ino:58,32,32;st_mode:59,64,16;st_nlink:60,80,16;st_reserved1:9,96,16;st_reserved2:9,112,16;st_rdev:55,128,32;st_size:69,160,32;st_atime:84,192,32;st_spare1:1,224,32;st_mtime:84,256,32;st_spare2:1,288,32;st_ctime:84,320,32;st_spare3:1,352,32;st_blksize:3,384,32;st_blocks:75,416,32;st_pad:4,448,29;st_sysVacl:4,477,1;st_acl:4,478,1;st_remote:4,479,1;st_netdev:55,480,32;st_netino:58,512,32;st_cnode:83,544,16;st_rcnode:83,560,16;st_netsite:82,576,16;st_fstype:8,592,16;st_realdev:55,608,32;st_basemode:9,640,16;st_spareshort:9,656,16;st_uid:79,672,32;st_gid:78,704,32;st_spare4:269=ar129;0;2;27,736,96;;flock:T270=s16l_type:8,0,16;l_whence:8,16,16;l_start:69,32,32;l_len:69,64,32;l_pid:76,96,32;;hrtime_t:t271=31iovec:T272=s8iov_base:160,0,32;iov_len:85,32,32;;uio_rw:T273=eUIO_READ:1,UIO_WRITE:2,;linger:T274=s8l_onoff:1,0,32;l_linger:1,32,32;;socklen_t:t275=85sockaddr:T276=s16sa_family:9,0,16;sa_data:277=ar129;0;13;2,16,112;;sockproto:T278=s4sp_family:9,0,16;sp_protocol:9,16,16;;msghdr:T279=s24msg_name:93,0,32;msg_namelen:1,32,32;msg_iov:280=*272,64,32;msg_iovlen:1,96,32;msg_accrights:93,128,32;msg_accrightslen:1,160,32;;msghdr2:T281=s28msg_name:93,0,32;msg_namelen:275,32,32;msg_iov:280,64,32;msg_iovlen:102,96,32;msg_control:93,128,32;msg_controllen:275,160,32;msg_flags:1,192,32;;in_addr_t:t282=5in_addr:T283=s4s_addr:282,0,32;;sockaddr_in:T284=s16sin_family:8,0,16;sin_port:101,16,16;sin_addr:283,32,32;sin_zero:285=ar129;0;7;2,64,64;;ip_mreq:T286=s8imr_multiaddr:283,0,32;imr_interface:283,32,32;;hostent:T287=s20h_name:91,0,32;h_aliases:288=*91,32,32;h_addrtype:1,64,32;h_length:1,96,32;h_addr_list:288,128,32;;netent:T289=s16n_name:91,0,32;n_aliases:288,32,32;n_addrtype:1,64,32;n_net:282,96,32;;servent:T290=s16s_name:91,0,32;s_aliases:288,32,32;s_port:1,64,32;s_proto:91,96,32;;protoent:T291=s12p_name:91,0,32;p_aliases:288,32,32;p_proto:1,64,32;;rpcent:T292=s12r_name:91,0,32;r_aliases:288,32,32;r_number:1,64,32;;group:T293=s16gr_name:91,0,32;gr_passwd:91,32,32;gr_gid:78,64,32;gr_mem:288,96,32;;dirent:T294=s264d_ino:58,0,32;d_reclen:8,32,16;d_namlen:8,48,16;d_name:295=ar129;0;255;2,64,2048;;__dirdesc:T296=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;DIR:t297=296_dirdesc:T298=s32__dd_fd:1,0,32;__dd_loc:3,32,32;__dd_size:3,64,32;__dd_bbase:3,96,32;__dd_entno:3,128,32;__dd_bsize:3,160,32;__dd_buf:91,192,32;__dd_unused:160,224,32;;ptrdiff_t:t299=3wint_t:t300=4wctype_t:t301=4packet_struct:T302=s1036packet_version:25,0,16;packet_type:25,16,16;crc32_value:266,32,32;result_code:25,64,16;buffer:303=ar129;0;1023;2,80,8192;;packet:t304=302generate_crc32_table:F20crc:r5poly:r5i:r1j:r1calculate_crc32:F5buffer:P91buffer_size:P1crc:r5current_index:r1randomize_buffer:F20buffer:P91buffer_size:P1fp:r305=*154x:r1seed:r1my_tcp_connect:F1host_name:P91port:P1sd:P306=*1my_connect:F1host_name:P91port:P1sd:P306proto:P91servaddr:284hp:r307=*287ptrp:r308=*291result:r1servaddr:284hp:r307ptrp:r308result:r1my_inet_aton:F1cp:P309=*310=k2addr:P311=*283val:r4base:r1n:r1c:r2parts:312=ar129;0;3;102pp:r313=*102strip:F20buffer:P91x:r1index:r1sendall:F1s:P1buf:P91len:P306total:r1bytesleft:r1n:r1recvall:F1s:P1buf:P91len:P306timeout:P1total:r1bytesleft:r1n:r1start_time:84current_time:84total:r1bytesleft:r1n:r1start_time:84current_time:84my_strsep:F91stringp:P288delim:P309begin:r91end:r91display_license:F20crc32_table:S314=ar129;0;255;5/var/tmp//ccT8rxJb.s/var/tmp//ccT8rxJb.slib2funcs.asm)Od+'d+.<=_qȀFـ.AZހ+$:1;@<N=]>k?zABGHNȀOـXYc f i2lEoYrnux{~р$9HT!a'p.=CHMSȀ\Հbhrx~,8L`q̀ڀ#0?L[l#΀)ހ5:>?@$A2B>CLDZEhFwGHIKLMр    & 7 G VX e[ s\ ] ܀_ ` (b 5h B Ҁx & 8 D W e s3 > Ȁ ـ U ag 9 P iQ U . π!0(FH/vFm[&V̀7sDwǀ€IՀvĀ!܀""΀-?)-R1s1€22ʀ3 235323J34OV4c)4w5Q55L56$?6<7 #7"7\77U78v88ˀ9{::;;|;;;>9>3>>ڀ??0?B??@P@bAA%AAҀBFBBC8C}CрD4D߀[DEECEHEŀFXEFhF׀#F$W-xF@WF@WDWD_DaD_Da DvLDyPDdDDDDDDDDDDDDDDDDD D(D0D4D<DDDPD`DxDDDDDDDDDDDDDD DD$D8D{@D|LD}TD~`DlDxDDDDDDDDDDDDwDcDcDdDe(Df4DgHDh\DlhDnpDoxDpDqDrG@XG @YGZG+$ 1G?@ D DD D D D<DDDLDPDTD#D%D'D+D,D2D3D9DHDK(D8D@DDDO|DWD\D]DaDbD5D^DDe Df Dg,Dh<DlDD_TDiTDolDwDzD}DDDDDD~$D{<DxPDpdDqpDrxDtDXDYDPDQDQDRD;D;D<D?DCD@D.(D4(D-@DXDlGL@ GY Gi Gz@G@G@G@tG$6G@ DDDDD D$D(D0D8D@DPD`DDDDDDDDDGʀG@G@G@$H$7H@H%@DDDD,D4D<DHDLDPD\D`DdDhDlDpDtDtD|DDH6@HL$8H^@DDDDDD0D<D@Ho@@H$9DDD D DDD D,D4D<D<D@DDD`DhD"pDtD"xD|DD"DD"D#D+D1D7D;D@DCD@DCD@DADCDI DMDN DT(DU4D<DDDX\DYdD\lDhtDk|DlDnD|DDDDDDDDDD8DHD}dDdDqDtD_DbDDPDD,DE@D<`D2xD'D,D%D&DDDDHHHH@H@H@Hƀ<HҀ (H@ H 8HI$>pI@ DDD DDDD D$D(D4D8D<D@DHDPDTDXD`DhDlDpDxDDDD DDDD2D6 D8,D9HD<LDxXDx\DydDzhD{pD|xDz|DDDDDDDDDDDDDDDDDDDD<DPD=dD?tDD|DEDTDUDVDYD^D]D^DaD^DaDeDgDmDp Dp4DhDDfXDbtDZDGDHDKDNDLD3D"$D(D"0D4D"<D#DD$HD%TD&\D$`DpDDI @I6@IHI[Ik 0I{ (I(I(I(I@Iƀ ,I@I@I$C0I@DDDDD DDDD D$D,D0DDDTDhDlJ J@lJ($CJ7@DDD DJ>$CDDDD DDDD$D,JN@J`@8Jr$EJ@J@ J@ J@JDD,D0D<DDDHDLDTD\DlD|DDDDSDVDYD\D_DcDgDhDiDjDkDnDr D{DDLDPDvDsDvDvDwDDD"D#D&D)D1D7D6D7D:D=DC D=DCDG0DJ8DL@D+HD1TD+XD,`D/dD lD D DDDDJ@J@JJ@JJK@K@K(K6,PKB@KJKS@K]KhKo@Kw@KKK$GK@DDDK$HK@K@DD DDD$D,DLDTD\D\DhDxDDDDDDDDDDDD$D4D@DHD`DpDDK@K@K@L@ L$JhDDD DD(D4DDL$@L,@LL4$JLH@DDDDDD$D,D <DHDXDhD&tD*D+D2DEDFD4D5D6D8D9D=D4D;D>D? D-(D:(D8DDD TDdDtLV@Lh@L~@L@L$KLpL@KDKDNDK DNDKDNDQ DR(DR,DV<L$[LL[L@[L@[D[DeD[Dc$D[(De0D[4Da<De@Di\DjdDnDeDDkDlDrDDuD|$D},DHDPDhDlDDDvDvDwDxDDL@\M@]M@^M@_M1@\MA@]MM@^MZ@_Mm$NM@M@DDDD DDDLDTDTD`DpDxDDDDDDD\DdDlDxDDDDDDDDMM@M@MM@M@M 6M 7N 9N :N% ;N4 <NH =NZ >Nm @N BN CN EN GN HN IN JN KN RdQ(I dQ(dQ0<?asʀHۀ0C\+&:3;B<P=_>m?|ABGHNʀOۀXYc f"i4lGo[rpux{~Ӏ&;JV!c'r.=CHMSʀ\׀bhrx~.:Nbs€π܀%2AN]n#Ѐ)5:> ?@&A4B@CND\EjFyGHIKLÀMӀ    ( 9 I XX g[ u\ ] ހ_ ` *b 7h D Ԁx ( : F Y g u3 > ʀ ۀ U cg ; R kQ U €. р !2(HH1xHm](Xπ 9sFyɀĀI׀ xƀ!ހ""Ѐ-A)-T1s1Ā22̀323 5343J34QV4e)4y5 Q55N56&?6>7 #7$7^77U78x88̀9}:<;;~;;;>;>3>>܀??2?D??@R@bAA'AAԀBHBBC:CCӀD6D[DEECEHEǀFZEFj$(QD(D,D-D,D- D.D/D0 D1(D/,D54D-8D8DD3HF@)F@)F@*F@*HF$=QF@=F@=D=DBDDDEDFDD DF$DD,DJ4F@>F@@<F$NRhF@NG@NDND^DND^ DN(DN,D^4D_<D`DDaLDaPDhXDh\DidDjDiDjDiDlDfG@OG@PG"@QG*$qSXG<@qGJ@qGR@qDqDtDqDt G]${SGk@{Gy@{G@{G@{D{DD{DD{D4D8D<D@DHDLDXD`DhDxDDDDDDDDDDDDD(D4DHDTD\DpDxG|G@}G@~G@Gƀ|G@}G@~G@G$UG@H@ DDDDD$D(D,DPDXDlDpD|DDDDDDD D D,D4D<DDDDDDDDDDDD D D DD$DDDDDDDDDDH@H%@H-@H2@H7HO@ 0H\$YHf@DD!D"D#D!HD)PHq@Hv@\H$.YH@.H@.H@.D.D1D.D.$D0(D4,D74D:HD?PDC\DF`DGhH@/H@0H@1H$KZ H@KH@KH@KH@K DKDS DK$DS(DK,DL4DK8DMDDSHDNPDUTDX\D[lD^DgDlDsDpDtD_D`DbDc H@LH@MH@NIOIP I @LI)@MI6@NI;OIIP IY$y[PIg@yIt@yDyD}DyD|D}DD4D@DLDTDXD\D`DpDxI@zI@zI$[DDDDD DD D,D8DDDPD\DhDtDDDDI(#@d\<d\+\D:\D>\D?\D@\DA\DC\DD\DE\DF\DG\DK\DL\DM\NRPE/NRPE/opt/nrpe/etc/nrpe.cfg010040000000000000000000000115111000062000100164640ustar00rootroot000037777777777############################################################################# # Sample NRPE Config File # Written by: Ethan Galstad (nagios@nagios.org) # # Last Modified: 03-05-2003 # # NOTES: # This is a sample configuration file for the NRPE daemon. It needs to be # located on the remote host that is running the NRPE daemon, not the host # from which the check_nrpe client is being executed. ############################################################################# # PORT NUMBER # Port number we should wait for connections on. # NOTE: This must be a non-priviledged port (i.e. > 1024). # NOTE: This option is ignored if NRPE is running under either inetd or xinetd server_port=@nrpe_port@ # SERVER ADDRESS # Address that nrpe should bind to in case there are more than one interface # and you do not want nrpe to bind on all interfaces. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd #server_address=192.168.1.1 # ALLOWED HOST ADDRESSES # This is a comma-delimited list of IP address of hosts that are allowed # to talk to the NRPE daemon. # # NOTE: The daemon only does rudimentary checking of the client's IP # address. I would highly recommend adding entries in your # /etc/hosts.allow file to allow only the specified host to connect # to the port you are running this daemon on. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd allowed_hosts=127.0.0.1 # NRPE USER # This determines the effective user that the NRPE daemon should run as. # You can either supply a username or a UID. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd nrpe_user=@nrpe_user@ # NRPE GROUP # This determines the effective group that the NRPE daemon should run as. # You can either supply a group name or a GID. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd nrpe_group=@nrpe_grp@ # COMMAND ARGUMENT PROCESSING # This option determines whether or not the NRPE daemon will allow clients # to specify arguments to commands that are executed. This option only works # if the daemon was configured with the --enable-command-args configure script # option. # # *** ENABLING THIS OPTION IS A SECURITY RISK! *** # Read the SECURITY file for information on some of the security implications # of enabling this variable. # # Values: 0=do not allow arguments, 1=allow command arguments dont_blame_nrpe=0 # DEBUGGING OPTION # This option determines whether or not debugging messages are logged to the # syslog facility. # Values: 0=debugging off, 1=debugging on debug=0 # COMMAND TIMEOUT # This specifies the maximum number of seconds that the NRPE daemon will # allow plugins to finish executing before killing them off. command_timeout=60 # INCLUDE CONFIG FILE # This directive allows you to include definitions from an external config file. #include= # INCLUDE CONFIG DIRECTORY # This directive allows you to include definitions from config files (with a # .cfg extension) in one or more directories (with recursion). #include_dir= #include_dir= # COMMAND DEFINITIONS # Command definitions that this daemon will run. Definitions # are in the following format: # # command[]= # # When the daemon receives a request to return the results of # it will execute the command specified by the argument. # # Unlike Nagios, the command line cannot contain macros - it must be # typed exactly as it should be executed. # # Note: Any plugins that are used in the command lines must reside # on the machine that this daemon is running on! The examples below # assume that you have plugins installed in a /usr/local/nagios/libexec # directory. Also note that you will have to modify the definitions below # to match the argument format the plugins expect. Remember, these are # examples only! # The following examples use hardcoded command arguments... command[check_users]=@libexecdir@/check_users -w 5 -c 10 command[check_load]=@libexecdir@/check_load -w 15,10,5 -c 30,25,20 command[check_disk1]=@libexecdir@/check_disk -w 20 -c 10 -p /dev/hda1 command[check_disk2]=@libexecdir@/check_disk -w 20 -c 10 -p /dev/hdb1 command[check_zombie_procs]=@libexecdir@/check_procs -w 5 -c 10 -s Z command[check_total_procs]=@libexecdir@/check_procs -w 150 -c 200 # The following examples allow user-supplied arguments and can # only be used if the NRPE daemon was compiled with support for # command arguments *AND* the dont_blame_nrpe directive in this # config file is set to '1'... #command[check_users]=@libexecdir@/check_users -w $ARG1$ -c $ARG2$ #command[check_load]=@libexecdir@/check_load -w $ARG1$ -c $ARG2$ #command[check_disk]=@libexecdir@/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ #command[check_procs]=@libexecdir@/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$