ELF>@@"!1ff.fAWAVAUE1ATIHHUHSHHHLE1LxGHI9r@HIL,I)Mu=HLHL1[]A\A]A^A_fDL,+MtWE1MA4$H=L=LLLH1)HI9Mt1IE1MlHIIDMDIVfDE1HMLELEA|$pHLH LLHE1HI9|MtIzfE1HMLELEAL$l1LLHHI9A$MIŃH1HHIItLIH)I)1HLD낐II LIH)I)1HLDf.A<$L,+teMuH۸IHD}@uI|$!E1HMLELEHMLELE DI|$MLIH)I)1HLDL=1LLL!HI9I|$8MIL=LH)H)1HHDED$jHLH[IL$<]LA\1A]A^A_DE1E1M6@MLIH)I)1HLDED$61IL$LL=LLxTHI9rMI|$8MI?L=LH)H)1HHDLfDI|$8L,+t.L=MH۸IHDf.L=MuH۸IHDI|$4fE1HMLELE*uL=tL=eLH)H)DAWAVAUIHHATE1UHSHHHLE1LxgHI9r`HIL$I)Mu]1HLLHI9 M IH L1 fL$+MtWE1M AuH=HLLH1HI9MIE1MLHMLELEM6fDL$+I}8tSMLIH)I)1HLDEEj1IM This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. --send needs a query string like foo.123456.imsi Invalid query string '%s', need a query string like foo.123456.imsi Sending mDNS to %s%s%s:%u: %s unable to encode mDNS response Could not create unix socket: %s: %s Could not register listen fd: %d ERROR: timeouts part too long in query string ERROR: invalid min-delay number: %s ERROR: invalid timeout number: %s ERROR: query string is too long: '%s' ERROR: cannot parse query string: '%s' ERROR: cannot send query: '%s' ERROR: failed to read line from socket ERROR: Only one query per client connect is allowed; received '%s' and '%s' on the same connection Invalid cmdline_opts.mdns_addr.port: %s Invalid cmdline_opts.min_delay: %s Invalid cmdline_opts.timeout: %s Standalone mslookup client for Distributed GSM Receiving mslookup results means listening for responses on a socket. Often, integration (e.g. FreeSwitch dialplan.py) makes it hard to select() on a socket to read responses, because that interferes with the main program (e.g. FreeSwitch's dialplan.py seems to be integrated with an own select() main loop that interferes with osmo_select_main(), or an smpp.py uses smpplib.client.listen() as main loop, etc.). This program provides a trivial solution, by outsourcing the mslookup main loop to a separate process. Communication is done via cmdline arg and stdout pipe or a (blocking) unix domain socket, results are returned in CSV or JSON format. This can be done one-shot, i.e. exit as soon as the response has been determined, or in daemon form, i.e. continuously listen for requests and return responses. About running a local daemon: it is unintuitive to connect to a socket to solve a problem of reading from a socket -- it seems like just more of the same problem. The reasons why the daemon is in fact useful are: - The osmo-mslookup-client daemon will return only those results matching requests issued on that socket connection. - A program can simply blockingly recv() from the osmo-mslookup-client socket instead of needing to run osmo_select_main() so that libosmo-mslookup is able to asynchronously receive responses from remote servers. - Only one long-lived multicast socket needs to be opened instead of a new socket for each request. Output is in CSV or json, see --format. The default is tab-separated CSV with these columns: query result last age v4_ip v4_port v6_ip v6_port One-shot operation example: $ osmo-mslookup-client 1000-@sip.voice.12345.msisdn -f json {"query": "sip.voice.12345.msisdn", "result": "result", "last": true, "age": 5, "v4": ["1.2.3.7", "23"]} $ Daemon operation example: $ osmo-mslookup-client -s /tmp/mslookup -d (and a client program then connects to /tmp/mslookup, find an implementation example below) Integrating with calling programs can be done by: - call osmo-mslookup-client with the query string as argument. It will open a multicast DNS socket, send out a query and wait for the matching response. It will print the result on stdout and exit. This method launches a new process for every mslookup query, and creates a short-lived multicast listener for each invocation. This is fine for low activity, but does not scale well. - invoke osmo-mslookup-client --socket /tmp/mslookup -d. Individual queries can be sent by connecting to that unix domain socket, blockingly reading the response when it arrives and disconnecting. This way only one process keeps one multicast listener open. Callers can connect to this socket without spawning processes. This is recommended for scale. Python example clients for {CSV,JSON}x{cmdline,socket} can be found here: http://git.osmocom.org/osmo-hlr/tree/contrib/dgsm/osmo-mslookup-pipe.py http://git.osmocom.org/osmo-hlr/tree/contrib/dgsm/osmo-mslookup-socket.py Options: [[delay-][timeout]@]service.number.id A service query string with optional individual timeout. The same format is also used on a daemon socket, if any. The timeout consists of the min-delay and the timeout numbers, corresponding to the --min-delay and --timeout options, in milliseconds. These options apply if a query string lacks own numbers. Examples: gsup.hlr.1234567.imsi Use cmdline timeout settings 5000@gsup.hlr.1234567.imsi Return N results for 5 seconds 1000-5000@sip.voice.123.msisdn Same, but silent for first second 10000-@smpp.sms.567.msisdn Return 1 result after 10 seconds --format -f csv (default) Format result lines in CSV format. --no-csv-headers -H If the format is 'csv', by default, the first output line prints the CSV headers used for CSV output format. This option disables these CSV headers. --format -f json Format result lines in json instead of semicolon separated, like: {"query": "sip.voice.12345.msisdn", "result": "ok", "v4": ["10.9.8.7", "5060"]} --daemon -d Keep running after a request has been serviced --mdns-ip -m 239.192.23.42 -m ff08::23:42 --mdns-port -M 4266 Set multicast IP address / port to send mDNS requests and listen for mDNS reponses --mdns-domain-suffix -D mdns.osmocom.org Append this suffix to each mDNS query's domain to avoid colliding with the top-level domains administrated by IANA. --min-delay -t 1000 (in milliseconds) Set minimum delay to wait before returning any results. When this timeout has elapsed, the best current result is returned, if any is available. Responses arriving after the min-delay has elapsed which have a younger age than previous results are returned immediately. Note: When a response with age of zero comes in, the result is returned immediately and the request is discarded: non-daemon mode exits, daemon mode ignores later results. --timeout -T 1000 (in milliseconds) Set timeout after which to stop listening for responses. If this is smaller than -t, the value from -t will be used for -T as well. Note: When a response with age of zero comes in, the result is returned immediately and the request is discarded: non-daemon mode exits, daemon mode ignores later results. --socket -s /path/to/unix-domain-socket Listen to requests from and write responses to a UNIX domain socket. --send -S Do not query, but send an mslookup result. This is useful only for testing. Examples: --send foo.123.msisdn 300 23.42.17.11 1234 --send foo.123.msisdn 300 2323:4242:1717:1111::42 1234 --send foo.123.msisdn 300 23.42.17.11 1234 2323:4242:1717:1111::42 1234 --quiet -q Do not print errors to stderr, do not log to stderr. --help -h This helpError in command line options. Exiting. --send option cannot have any listening related args.In daemon mode, --timeout must not be zero. AWHAVL5AUL-ATL%UH1S1H1L|$HHH=H=H=H=H=1H=H=1MLLHD$`D0w IcL=uH (H=H1HL$ |$ r=uHH=H51HH8,H5H=H=u =HHH=H51'H=1H=H=H5H[]A\A]A^A_HHl`H1HL$ |$ 0=~HH=H51]HL$ H|$ f=HH=H51HH|=09=H5H:H=H=HHH(LH5HH=Ht Hc)H|H-HcH1;u=tH9-u==H ,H=uH==Hc)HtD==H== H H=H=KH 5H=WH5H=t61\H= H=~=qHH=H51Psocket_acceptsocket_client_respond_resultdo_sendfHdmMDTtsSqhV239.192.23.42 FU6Vr1r1r1y1yW&{(Xint*r)r136 7 8 9 : (; 0< 8= @@ HA PB XD`FhHpItJ xMNOQY [\]^ y_ *`b Y+66 M)* * A )1* $* 2  2 4 7 8val 9S)Zn 6k2, -J02: 5J X8 `+:r+<r +>r +@r +Br +Dr Gd6hpd  *.q0v0vJJ2(k#catp r ruz {    W   ,rĖ,r8ctxy6 B%%6KKUZP[vty 6W_*7r7r7r&$J,#outL MO1,$R]ST$Wv#vtyX y$[#rb\ y$_`ab$e#rawf \I: -P-U6-Y]-]v-c-gyJ 6d rO  r =i 0 !Jfd#&rcb) +y -r(B  r  ,rb  ]^   6 4. af0ip2 4 +2  6-3 4 7str5  M buflen *pos * ,r"t   _t C. D/ D0  6, -R 6 ,r7 *?" `D2 G7 idI DLyX G 6@tP rcR! U X 8agec 7lfpG     7   2  ' ? 7O 7U  @dy eJhkyn r (x 0| 8   7 y   7    205;789: ; $<;= >E(b ); C%iEdst& yEtrx'ni. J6J)3l1h+8 l2h,8(l3h-80l4h.88cb0=@2 +hlen3 +j58p68x788M.{6M6{]`68 aiE0],ra`0  78 7<@HPXYZ8 Vb6cE $pN#ctxOyPrQ R @SJHTJXUh%Vl A[* +6d  e@|J#ofd E@2CDJFG H 76f9` K  % , + ^ By]^ o B       ' = XyU X 7x  x **   F  +r9H  *@* [dw y* f  G g 3 ay*2 @#$) zI**` v 8 7 K  z *3 y9!]  $s !"$Sy+   yr yr d 3 ry  N+  ^ 3 i  y=* "]6h#% :1rc;xwc!val %% &[_rc>wU1T R T &P_rc>U0T R T &Wc_rc>GU0T R T ?, ? FU oUsTvQ}R~XF U T1Q(+U JU iT  ?B@s R@?D ? FU #U0T0Q =:T0'QT2hT1T1T1T0T1T0  ( !T B@U  ,rT R ( U0FU T1Q,9Us.U F-U T1QL ^FdU T1Q5BU  T S6 '111*i 'zQ$z"q|$ }at~h&  rc%    &r% @%4&}cU}T@QRs#P>U0T Q}R T Q}% & &U|T0% 3 &}` UvT@QsRs |"@~ UvT-> U0T QvR T Qv FU T1Q.% D!& &UsT0% !& &UsT0@!"@@i@^@@@% i"& &UsT0@"UsT@I"Us"TQ  "U|TsQ#U}T|+#UvT XJ#T}Qo#T Qs#T Qs#UvT #T Qs U T Q R |'k~%k6 l 7m& n' qp$ %p%%F%G%$%H%% ^@uo%h@.t@@~@&%UsTv(T ja$%Ia(7!qc$<%d%Jd%q=\&I\'K+(K!"rKO cM(nM(&& Q%&& Q%& Q%.$ON'.@'T Q~ `.FU&(.. ^@'h@.t@@~@'U  T KM(U~T QvR|l(UvT -UT~B=7(!c9(!n9(<(:%<(:%J:%: ) ofd" rc#a)U5T0QsR2)U  )T Qs ]  T Qs:,"ofd# 5rc(%~len $~rc>, &P+len *rc(*T Q1 T Q X1 @+@@.@^@@@+T~Q~+T @Q +Us.,U T Q R  `,UsT F,U T1Q" FU T1Q%,6 ,k <-"ofd& 8rrc(ClN-UL -4ofd+ !c(!rcE!atm'c."c9(Hlen *rc>. I>.Uv(\.TvQs(T Q .6.n .4c7(!ofd =.4str%'z614"bufzz'*z;"rzi sb| / }* } @}/0@ UsT|Q RQ`0 *  @800@ U|TQ 1 *  @00@ @0@ v U|TQ 1 *  @o10@ U|T~Q 2 *  @10@ U~T|Q 2 *  @q20@ U|T~Q R}&3 *  @20@ U|T~Q R}<3 * @w30@(Q 3U}83U}3U}83U} 4U}8#4U} ']9"buf]]&*]:"r]h sb_ 75 `* ` @`50@ UsT}Q RQ5 c*cM@c0@46 e* e @e50@ @e6@ v U}T~Q6 f* f @f60@ U}T~Q/7 g* g @g70@ U}T~Q 7 k* k @k70@ U}T~QR|)8 m* m @m80@ U}T~Q8 o*o @oz80@(Q RR#<8 q*qM@q0@L9 t*t @t>90@Nd9U||9U|9U|89U|89U|89U|  ?*o>551OO8o>}q }rG ~irc|ctxy>>  ;Imsg;$;G;% }  +>;U1T Q0.(R|;U|Tv;T Q T Qv<U0T0Q 2<UsTv>Z<U0T R|~<U}TsQ|<U QvS<U}TvR X0Y0)=U}T0QsR|=Uv1=UvV=U}T {=T QvF=U T1QDF=U T1Q<F=U T1Q1F >U T1QKFI>U T1QL FU T1QO>66>6>?>ofd& Up7rT??5'5=PargQPrc[qval8H ] =UvTHQ:r8 s+ )@?U T (FU Q@@Rval@Y L*=@4sbD=@M Q^@8%/t@1v/t@t4vtNv/\@\1v\Jv/K@K3vLvMv/@Rx)0.,SA.EAT QUN`0(-C((G(A(@(A(.?;B.. ^@aBh@.t@@~@yBUs  T}@(B((7CS(S( CUs  Us0%pC&(&UUT00%3Ct%U%@%C%H%%0<-F[-e-up-w|---v-N- .AE.F. ^@Dh@.t@@~@EUs  UsT weETvQ R0[EUvT @EUvT@KEUvT Q}R0-EUsTv FUsT}Q *FUvOFU Tv ]FT QsR} FU T1Q'TTI~IH} : ; 9 I8  !I1B : ;9 I8 ( 4:!;9 IB H} H} .?: ; 9 'I< 1RBUX!YW 4:!;9 IB UI : ; 9 I8 &I : ; 9!41B: ; 9 I!I/ :!;9 IB4:!;9 I1RBX!YW $ > .?: ;9 'I<4:!;9 I:!; 9 I<' .?:!;9!'<!4:!;9 I":!;9 IB# : ;9 I8 $ : ;9 %4:!;9 I& '.?:!;9!'@z(H})7I*4: ; 9 I?<+ :!;9!I !k,>! !I: ; 9!- :!;9!I.1RBUX!Y W!/.:!; 9!' !0.1@z1 :!;!I8 2 : ;9!34: ;9 I5:!; 9 IB6 I8 7>! !I:!;9!84:!; 9 I9.?: ; 9!'<:.?:!;9!'I@z; :!;9!< =.?:!;9!' !>4I4?.?:!; 9 'I@z@ 1A: ;9 IB'IC : ; 9!D :!; 9!IE :!; 9 IF UG 1UH 1I:!;9 IJ KH}L.: ;9 'I M1RBUX!YW NH}O4:!; 9!IBP:!; 9 IBQ.: ; 9 'I !R: ; 9 IS41T.?<n:!;!U% UV : ; W X$ > Y: ; 9 Z&[<\ : ;9 ](^(_!`!I7 a : ; 9 b!I/c4: ; 9 I?d4: ;9 I?e : ;9 f.?: ;9 '<g.?: ; 9 '<h.?: ; 9 'I<i1RBX Y W j.?: ;9 'I k.: ;9 'I@zlI~m : ;9 n.: ;9 ' o: ; 9 Ip: ; 9 Iq4: ; 9 IBr.: ; 9 ' s.: ; 9 '@zt1u41v 1N*/U/SUSUSU S U S*T*VTVT V10SP10 1 P 1 PPVU.\./U/1UT,V,/T/1T0 S/10.U.ySyUSUSU#P#_V_c}~V VPV U .S.\SS\S\S\SP||||#P#SSVV\ \\ S S !P!VPv PV S4U4~U7T7~T;Q;~Q;R;BVBIRIyVy~RSHSHMU0TSS S  S*SQP2U2AQAVU+T+ARA\T _ !S!_U_SPSP _ S P|P$ A_AEUUAAEu_RPUQHSHUSUS0 0EUE P P'S':P:AS U UTTPhStSPSSS!P!RVVPPL1$P$/R P&s&SPs PsSUUTT00U;\;<U<^\^cUT9V9<TX<><<X Y><>< CyJY=IKKth<"gXlrZK X JI.w <g{mt K K tK tX ]$"<KbJctJ ~  . wtw w tle s.Kg t׭ iX]X!X J fY}t 9v}r  }tK < <Y,x<4tVIK#WZ... 0r2<NtL,>,LZr<vYdZ<2XX#f4]u 0X X zY0YY/t]u#XYm.#f^upX'fsXuX$X!usn t u= tYX'vYzUs"J$t.X#k"o"  .K6aX6 yYX!socklen_tllist_addosmo_panicsize_trequest_cleanupsa_familyLOG_FLT_BSC_SUBSCRlog_target_destroyquietprint_timestampresult_cblog_filename_posresult_formattail__ssize_t_IO_codecvtosmo_mslookup_client_methodLOG_FLT_GB_NSVCrequestosmo_mslookup_resultlog_target_typelchan_IO_save_endosmo_stderr_targetsock_pathgsmtap_instlog_infollist_emptyai_flags__func__SOCK_RAWosmo_mslookup_result_code_namestrtollstart_query_strosmo_mslookup_result_name_c_IO_write_baseai_next_talloc_free_lockLOG_CTX_L1_SAPILOG_TGT_TYPE_VTYtype_IO_save_baseminvalmdns_domain_suffixformatter_tai_canonnamedestruct_data_chainssize_tendptrdata_lenpriv_cur_columndo_sendosmo_mdns_sock_send__uint8_tfilter_fnresultLOG_CTX_VLR_SUBSCRlog_set_print_filename_possockqueries_LOG_CTX_COUNTlong intSOCK_RDMraw_outputstrchrtimeoutshas_argFORMAT_JSONsocket_client_close_IO_markerprint_ext_timestampmainputsformattersprint_filename2log_set_print_extended_timestampheadLOG_FILENAME_BASENAMEsd_journalprint_versiongsm_lchansigned charuint8_t_IO_FILEOSMO_MSLOOKUP_RC_NONE_IO_wide_dataLOG_CTX_GB_NSVCLOG_TGT_TYPE_STRRBLOG_FILENAME_PATHSOCK_SEQPACKETchars_neededunsigned char_freeres_listtgt_gsmtapwhatg_bufosmo_sockaddr_str_from_str_Boolvalue__socket_typeOSMO_MSLOOKUP_ID_MSISDNprint_filenameosmo_init_logging2log_info_catcharSOCK_STREAMoutput_IO_lock_t__uint16_tprint_levelLOG_CTX_GB_BVCparse_intLOG_FLT_ALL__errno_locationuse_colorprint_tidprogram_exitflags_IO_read_ptrtgt_rbfp_offsetstrcmp__socklen_tosmo_mdns_result_encode__llist_addnum_cat_userosmo_mdns_sockLOG_TGT_TYPE_GSMTAPosmo_strlcpy_markersprint_filename_pos__va_list_tagmaxvalcmdline_optsmslookup_result_cbosmo_strbufprintfosmo_mslookup_idOSMO_MSLOOKUP_ID_NONESOCK_NONBLOCKlog_set_print_filename2_offsetlog_set_use_colorhost_v4long_optionshost_v6hostnameoptindenabledLOG_FLT_VLR_SUBSCR__builtin_fwritelog_filterlong unsigned intformat_flags2talloc_named_constlog_set_print_level_IO_read_baseLOG_FLT_GB_BVCquery_with_timeoutoptionGNU C11 12.2.0 -mtune=generic -march=x86-64 -g -O2 -std=gnu11 -fasynchronous-unwind-tables_unused2ai_familyai_socktypeformat_strsun_pathwriteFORMAT_CSV_old_offsetargvquery_by_handlesnprintfrxbufsenddescription__uint32_tlong long intrespond_resultfnameprint_fnosmo_mslookup_client_add_mdnsprefetchmsisdnlog_set_print_category_hexosmo_mdns_sock_init_IO_write_endfacilityformatter_csvprint_helpLOG_TGT_TYPE_STDERR__builtin_putsgp_offsetdomain_strsocket_initrespond_errstrerrortimeoutaddrosmo_fd_is_registeredai_addrlen_IO_buf_baseunsigned int_sb_remainbuflensocket_closequery_strs_lentgt_vty__pad5socket_acceptflagosmo_select_main_ctx_newloglevelosmo_mslookup_client_freeoverflow_arg_area_flagsfilter_datapriv_nrlistip_strs_modeLOG_CTX_GB_NSEOSMO_MSLOOKUP_ID_IMSIlog_set_print_category_codecvtosmo_fd_unregisterosmo_mslookup_client_requestosmo_mslookup_clientrecvosmo_mslookup_client_newqueryLOG_TGT_TYPE_SYSLOG__mptrai_addrrequests_handledlong doublellist_delFILEhandleentrygetopt_longmslookup_clientosmo_mslookup_id_typeSOCK_DGRAMsockaddr_unun_addrlong long unsigned intsun_familysa_family_tsocket_read_cbreg_save_areasocket_client_respond_resultlog_filename_typeresult_timeout_millisecondslog_ctx_indexage_struint16_t__off_tsocket_clientvalue_stringtgt_fileserviceosmo_mslookup_queryosmo_mslookup_query_handlingsa_datacsv_headers_freeres_buflog_print_filterslog_contextosmo_wqueuemsgbprint_category_hexquery_strlog_save_filterssockaddraddrinfoosmo_sock_unix_initLOG_CTX_BSC_SUBSCRosmo_fdwqueue_IO_backup_base_shortbufOSMO_MSLOOKUP_RC_NOT_FOUNDLOG_FLT_GB_NSEsocket_clientsargcsocket_cbcolor__off64_tosmo_sockaddr_strlog_filter_indexmin_wait_millisecondslog_finiexit_cleanup_sockoption_index_IO_buf_endosmo_fd_registerosmo_mslookup_result_code_namesglobalsSOCK_CLOEXECnamesave_fnfprintfportstart_query_strssocket_pathstrtokSOCK_PACKETstderrshort intnum_catwhenpriorityLOG_FILENAME_NONEget_value_stringident_vtable_offsetSOCK_DCCPcb_doing_nothingosmo_str_startswithexit_cleanupacceptosmo_sockaddr_str_is_nonzeroosmo_mslookup_cb_ttgt_syslog_sb_lformatter_jsonresponsestrlen_LOG_FLT_COUNTrespond_str_stdoutLOG_FILENAME_POS_LINE_END_IO_read_endimsiosmo_mslookup_query_init_from_domain_strLOG_FILENAME_POS_HEADER_ENDosmo_print_nLOG_FLT_L1_SAPIgsm_bts_trxuint32_t_filenoOSMO_MSLOOKUP_RC_RESULT_wide_dataoptargfilter_mapdaemonshort unsigned intstdoutLOG_TGT_TYPE_SYSTEMDmdns_addr_IO_write_ptrllist_headdashmin_delay_osmo_strbuf_remainosmo_mslookup_result_codelog_categorysocket_ofd__llist_delosmo_mdns_sock_cleanupnextlog_targetdatacategoriesclosefflushclientrequest_handleprevai_protocolquery_strsLOG_TGT_TYPE_FILEprint_categoryfwrite_talloc_zerolastosmo-mslookup-client.c/build/coverity/source-Osmocom/osmo-hlr/src/mslookup/build/coverity/source-Osmocom/osmo-hlr/src/mslookup/build/coverity/install-Osmocom/include/osmocom/core../../include/osmocom/mslookup/usr/lib/gcc/x86_64-linux-gnu/12/include/usr/include/x86_64-linux-gnu/bits/usr/include/x86_64-linux-gnu/bits/types/usr/include/usr/include/x86_64-linux-gnu/sysosmo-mslookup-client.cosmo-mslookup-client.cutils.hmslookup.hlinuxlist.hstddef.htypes.hstruct_FILE.hFILE.hstdio.hunistd.hgetopt_core.hgetopt_ext.hsockaddr.hun.hlogging.happlication.hstdint-uintn.hselect.hsocket_type.hsocket.hsockaddr_str.hmslookup_client.hnetdb.hmsgb.hmdns_sock.hmslookup_client_mdns.hstring.hsocket.hsocket.hpanic.htalloc.hmdns.hstdlib.herrno.hGCC: (Debian 12.2.0-14) 12.2.0zRx d0BBB E(N0D8G@B 8F0A(B BBBK  8G0F(E DBBJ H6BBB O(D0D8G@ 8I0H(B BBBI (AAG CAE )D`@(BEB D(D0G@[ 0A(A BBBE Ll*BBB B(A0A8G 8C0A(B BBBI ,Dc4cBGD k ABE MHI AP G W A H0BBH A(D0~ (A ABBK a(A ABBD|+BOI I(I0G8D@8A0A(B BBB0~AHD y AAH gAA 3p QBGA A(Gp (A ABBD x (A ABBB [ (A ABBG G (A ABBK 8BIA A(J (D ABBF ,1GDD \ABBLBII I(H0F8HP 8C0A(B BBBA "',1"60;-@&EAKPQdW]c6h;nutz p  ``P ( )  /9;=#)/h5>;SA0GMSY4_`erkq | p$@?"pZ]X0h  } %+1@7=CIO8U[ag m~6  F%-8E&LQ [lt *|/F,RY`c}p@n+ @~3*Q:AN[x}@19Zlx osmo-mslookup-client.c.LC2.LC3.LC4.LC0.LC1.LC5.LC8.LC7.LC6.LC11.LC12.LC13.LC17.LC18.LC9.LC10.LC14.LC15.LC16globals.LC20socket_cbcmdline_opts.LC26__func__.1.LC27.LC21.LC22.LC23.LC25.LC19.LC24print_version.LC29.LC28.LC30__func__.3.LC31.LC33.LC34.LC35.LC42.LC46.LC37.LC38.LC39.LC36.LC43.LC45.LC44.LC32.LC40.LC41.LC47__func__.2.LC49.LC48.LC51.LC50.LC52.LC54.LC57.LC60.LC55.LC56.LC53.LC59.LC62.LC61.LC58socket_read_cb.isra.0.LC63.LC66.LC65.LC64.LC67long_options.0.LC68.LC74.LC71.LC69.LC73.LC81.LC72.LC70.LC77.LC76.LC80.LC75.LC78.LC79cb_doing_nothingformatter_csvsnprintfosmo_mslookup_result_code_namesget_value_stringosmo_sockaddr_str_is_nonzeroformatter_jsonsocket_accept_talloc_zeroosmo_fd_registerstderrfprintfosmo_panic_talloc_freefwriteputsparse_int__errno_locationstrtolldo_sendtalloc_named_constosmo_mslookup_query_init_from_domain_strosmo_sockaddr_str_from_strosmo_mslookup_result_name_cosmo_mdns_sock_initosmo_mdns_result_encodeosmo_mdns_sock_sendosmo_mdns_sock_cleanuprespond_str_stdoutfflushsocket_client_respond_resultstrlensocket_initosmo_sock_unix_initstrerrorsocket_closeosmo_fd_unregisterosmo_fd_is_registeredformattersg_bufstrcmpmslookup_result_cbrespond_errquery_by_handlestart_query_strstrchrosmo_print_nosmo_strlcpyosmo_mslookup_client_requestrecvstrtokstart_query_strsmainosmo_init_logging2osmo_stderr_targetlog_set_print_filename2log_set_print_filename_poslog_set_print_levellog_set_print_categorylog_set_print_category_hexlog_set_print_extended_timestamplog_set_use_colorgetopt_longoptargosmo_mslookup_client_freelog_finioptindosmo_str_startswithosmo_mslookup_client_newosmo_mslookup_client_add_mdnsosmo_select_main_ctxlog_target_destroy$Alkmnl2<Ml l coo l o  lo o% S voo o  l=HlmnloHPll,7lmo~oo?Glkooo? rN bU a s t b4 b4 bD b4 b  u b v T " w8 ?  H !M xZ bm bx y " z v # { v $ { & ' | (9 T & Te |  ~ * ~ }  b_ b + , - bd . | b j  b 18/@zbbv0w"b,v=1B{Rb`vq2v{v3{bv4{bb$v55:{CvT6Y{bbs7zv8wbv9w:w!u0bCvPTXbqbbbtbbyv<wbv)=3wGb4Tb4c>u}y?zbbyb$-b4JbDUa:fwmryb4y?>z'bDb$Pb$x@?b$b$%b1;l~bvAwb.CbJBTs{bCzbb b$b$'b$P~fbtv~DwvEwvF{vGwbHz#v-I2wHOJX!]xLbbD'=EOMV|qy?>zvNwbvO {alWll }_wzQbS T4EbJQ[bls}bvU{'8~CbObY`vgVnww~bbbb`b`obvWw X} bb&Y+zCJbUb[` iz~bbvZwb~bb v[w&b3:bEbMb\amb{b\b@bbbbbdbb$b\$+6b@b$MbZbhvy]~{bbbCbbv^{$0vA_F{RbY`^jbDvb X}bbvawP0PP PP4PP P P$P(P,P 0P$4P(8P,<P@PDP8HPLP@PPDTPHXPL\PP`PTdPXhP\lP`pPdtPhxPl|PpPPxPPPPPPPP7PPPP;PP0P  @`!)3FNX _@d`jokp(b(0b(8b8@b8w d h8 i i f& g+ h9 h> hJ h T h ^ h h h u hp ~ h h h! h h h h h) hZ h h ha  h h5! h . h; h2H hU hb h8o h | hc  hX h( h h h hx h h h h  hD h% h2 h;? h L hY hf h s h  hD  h hB  hy h~ h hT h  h h% h< hH h{T h1` hm hVz h  h#  h  h  h  h  h h  hN  h) h# 7 hE h S h` hlm hz h2 h: h h# hr h; h h h h h,  h-, hQ 8 hF h, K hFW hd h | hU h h hM h hF  h h  h  hT h# h0 h = h J h] h; l hbr hx hc~ h h hJ  h h  h h h h@ h h h h h  h+ h ` h, h  h h  h( h  hr hi h h  h h h h hm h h@  h~- h A hO h  hI h> hr hI h h}  h h  h$ h/ h hv h7 h  h h/  h ( hf. h 4 h|: h2@ hF hSL hR h[ hc h=o h6| h h h hp h h@ hS hp b hh hY n h h? hv h h# ht h> h h hu h h % hH h` hUm hj h] h h h h h h| h hN + h8 hE hR h_ h&l hi hF hj h h h hX  h  h\- hj ht h  h7  h h h h h! hr/ h^ hZj hv h h h^ h h. hV h5  h h h=  h  h # hf1 h=b`W hd h  h h`  h h h hb hP, h:C hb R hN n h"} h  hN  h" h  hG  h0 h  h  hO - h C hn_ hSp hT  hC h h}  ho  h h( h#> hAY h ~ h h hB  h,  hO h ! h}A hF\ hx h  h hd h hP h) hJ ha hw h- h h h h h* h)T h  h h h h hD h> h^ hj htP h e  e  h e ey e e hP f e  e h hK h]%b.PSPxPP$P<PrPf!P~HPYhPrPPP@PP P"bd,PAbdKP`jPd|P=P= e8 e6PPPP@P8h$PN;P_RPpiPPPPPPPPP/"P7APNPcbhsPP(P/P8PPPP.P(;PJPePbzP h@ h eM eE h  ev en e ee h2 h"= eA eO eS eX h c erg e\v ez e f hM hQ e e h5  e& e" hV+ e>/ e<5dp eM eK  * e\. eZ4 pa  T    @ (!("! ek&! ei+!2I!S!o! ezs! exx!! ! ! e! e! e! e!!! e! e" e " e" e" e!"+"G" eK" eP" j"?""X"""#"#$,#K#`#p####?#6##a##" $!$ h'$@>$ hI$ eM$ eR$ h]$ e.a$ e*f$ h q$ eIu$ eEz$ h$ ej$ e`$ e$ e$@$ fE$ e$ e$ fE$ e$ e$ fX$ e$ e$` % e% e%'% fh7% e ;% eD%N% fxX% e\% ee% e(i% e&p%|%%% h% h% h % h % h & h"& h1 &-& h"8& e=<& e5J& eiN& ea\& e`& en& er& ew&v& h & e& e&}& h & e& e& f& h & e & e&R&R' e!' e'j1'A'vS']'y' e;}' e7' eW' eO'' f"' e}' e{'' f5' e' e' e' e'' ( ('(RN(m(( h ( h ( h ( h ( h (p) h? ) e) e) e#) e2) e,6) e";)b)w)b))))))7)) h ) * eS* eO$* h/* eo3* ekA* eE* eJ* h t* ex* e}* hs*T* * e* e* e* e* *P*& ++T$+ .+ f>+ e-B+ e'K+ eRO+ ePX+ b+ fl+ ecp+ e_y+ e~}+ ex+ e+ e+C +e ++ +Q ,,,/,| <, W,a, v,, ,(, h, , e, e, h - e - e- e - e%-<=- h q- h }- h- h"- h- h -- e - e - h- e= - e3 - en - ef . e . e . hs.T'.?.%].cn.{.T. hj. h. h./ e / e / h / e / e / h"*/ eE ./ e? C1 e<L1V1 f1f1 eOj1 eKp11u1 fq1 h} 1 ew1 eo1 h1 e1 e11 f1 e1 e1;22 fC"2 h} -2 e12 e62 hA2 eE2 eN2X2 f_h2 el2 e r2K22 fv2 h} 2 e12 e/2 h2 e@2 e>2"2 f2 eQ2 eM2T3'3 f03 h} ;3 eu?3 eqD3 hT3k^3 fn3 er3 ex3333q333o 4$424 h 84Z4 e^4 ec4 h n4 e1r4 ew4 h"4 e4 e4 e4 e4 e4 e04 f 4 h} 4 e4 e{4 h4 e"4 e"44 f/4 e2"5 e0" 5E&585 fBA5 h} L5 eF"P5 eD"U5 he5o5 f_{5 eU"5 eS"5 f5 h} 5 em"5 eg"5 h5 e"5 e"55 f5 e"5 e"55 f5 e"6 e"6656 f>6 h} I6 e"M6 e"R6 h]6 e"a6 e"j6t6 f 6 e"6 e"6Q6 f6 h} 6 e#6 e#6 h6 eN#6 eF#6p6 f?6 ev#7 er#7%7"07 fP97 h} D7 e#H7 e#M7 hX7 e#\7 e#e7oo7 fq7 e#7 e#77 f7 h} 7 e#7 e#7 h7 e $7 e$77 f7 e%$8 e!$ 8*8 f38 h} >8 eI$B8 eE$G8 hW8 a8 fq8 ea$u8 e]${8[8&8 f8 h} 8 e$8 e$8 h88 f8 e$8 e$8 f~8 h} 9 e$9 e$ 9 h9%9 f59 e$99 e$?9M9ge9}9999z999 h: : h#: e$': e$,: h6: eG%:: e;%?: h"H: e%L: e%Q: hI Z: e%^: e%c: h< : e%: e%: e;&: e-&: hs:T: h : e&: es&: h:5; e&; e& ; h9;-; f%; h= 5; h@; e&D; e&I; l;/; ;;`;;r;i <T< 3< [< < << <j<=#=52=DM=W=l=h|=F=>=z=S==0= >!>>6>J>][>> h]>> h> h> > h6? e&? e& ? h? e'? e')? eH'-? e@';? er'?? ej'O? e'S? e'X? hf?= s?X ? h ? h ? ? ??? ?@ h@ h`C@ h^S@ h_@ h8 i@ hN u@ h@ h @ h@ h @ h @ h@ hA@ h @ h @ h@ hm @A e'A e' A5AFAXA@sA e'wA e'A e'A e'A fA e(A e(AXA e#(A e!(ApApA e4(A e0(B eP(B eH(BB f)B ev(-B et(6B@B fJB e(NB e(WB e([B e(bByzBBBB e(B e(BBB CC2CMC e(QC e(VCuCC e(C e(CC e(C e(CC e)C e)Cp D e)D e)D e7)D e-)-D em)1D ea):D e)>D e)GD e)KD e)TDzaD e)eD e)nDzxD fD e)D e)D fD e*D e*DD fD e'*D e%*DD fD e6*D e4*D eE*D eC*DEE6EBEfEEZEE E+EAFI+FZ@F]PFu]FrFXFF0F hF h F hIF h!PPP!P9P=N@w@@[>b(s?'?N]l({ b( b(@/@J@k@p@TTb(c )>j}} "R-<X~ppbb-T p h C   . ;b8S d  b8     > o   '  F y E g i cD/8L cD/  cD/'?P] cD/i cD/x#; cD/ cD/K cD/) cD/27ATR"_ cD/k cD/vk cD/ cD/ cD/2;"E3">" c4G"hV"a" c4n"""" c4"")"Q"" c4# c4#O#w#n# c4# c4###o# c4# c4# $&$3$ c4?$ c4J$2b$o$ c4{$ c4$$$ c4$ c4$$$ c4$ c4$ c4% H% % % % <&l & && & ' I' s' 'X ''X'[(X$([5(gQ(gw((((((((b())8)n))))p)z *z(*7*F* c P 0CY`Yv l@pQoro  #6)X)w_"kk2D`r    @#6F@Y@iyHzPP" iL& i* i. i2 i6 i!: iJ> iWH iyM iR iW i\ ia if ik ip iu iz i i i i i# i. i3 i= iK iZ ic iq iz i i i i i i i i i i i i i 8pe{lP 4  , p p4@@$p @P.symtab.strtab.shstrtab.rela.text.data.bss.rodata.str1.1.rodata.str1.8.rela.text.startup.rela.rodata.rela.data.rel.local.rodata.cst16.rela.debug_info.debug_abbrev.rela.debug_loclists.rela.debug_aranges.rela.debug_rnglists.rela.debug_line.debug_str.debug_line_str.comment.note.GNU-stack.rela.eh_frame @q@X&, 12@2HeT:O@0/8 g@b@h< tA o@A `DpDF@Bt20bR*@h@@xH@p@00b 00 $9`4@x@ j  C