├── Makefile ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── libre-dev.dirs ├── libre-dev.files ├── libre.dirs ├── libre.files └── rules ├── docs ├── COPYING ├── ChangeLog ├── README ├── TODO ├── main.dox └── symbols.txt ├── include ├── re.h ├── re_base64.h ├── re_bfcp.h ├── re_bitv.h ├── re_conf.h ├── re_crc32.h ├── re_dbg.h ├── re_dns.h ├── re_fmt.h ├── re_hash.h ├── re_hmac.h ├── re_httpauth.h ├── re_ice.h ├── re_jbuf.h ├── re_list.h ├── re_lock.h ├── re_main.h ├── re_mbuf.h ├── re_md5.h ├── re_mem.h ├── re_mod.h ├── re_mqueue.h ├── re_natbd.h ├── re_net.h ├── re_rtp.h ├── re_sa.h ├── re_sdp.h ├── re_sha.h ├── re_sip.h ├── re_sipevent.h ├── re_sipreg.h ├── re_sipsess.h ├── re_stun.h ├── re_sys.h ├── re_tcp.h ├── re_telev.h ├── re_tls.h ├── re_tmr.h ├── re_turn.h ├── re_types.h ├── re_udp.h └── re_uri.h ├── mk ├── CMakeLists.txt ├── Doxyfile ├── re.mk ├── symbian │ ├── bld.inf │ ├── dll.cpp │ ├── ecrt.cpp │ ├── re.mmp │ ├── rebfcp.mmp │ ├── redns.mmp │ ├── resdp.mmp │ ├── resip.mmp │ ├── resipevent.mmp │ ├── resipsess.mmp │ └── restun.mmp └── win32 │ └── re.vcproj └── src ├── base64 ├── b64.c └── mod.mk ├── bfcp ├── attr.c ├── bfcp.h ├── hdr.c ├── mod.mk ├── msg.c ├── rep.c ├── req.c ├── sock.c └── transp.c ├── conf ├── conf.c └── mod.mk ├── crc32 ├── crc32.c └── mod.mk ├── dbg ├── dbg.c └── mod.mk ├── dns ├── client.c ├── cstr.c ├── darwin │ └── srv.c ├── dname.c ├── dns.h ├── hdr.c ├── mod.mk ├── ns.c ├── res.c ├── rr.c ├── rrlist.c ├── symbian │ └── srv.cpp └── win32 │ └── srv.c ├── fmt ├── ch.c ├── hexdump.c ├── mod.mk ├── pl.c ├── print.c ├── prm.c ├── regex.c ├── str.c ├── str_error.c └── time.c ├── hash ├── func.c ├── hash.c └── mod.mk ├── hmac ├── hmac_sha1.c └── mod.mk ├── httpauth ├── basic.c ├── digest.c └── mod.mk ├── ice ├── cand.c ├── candpair.c ├── chklist.c ├── comp.c ├── connchk.c ├── gather.c ├── ice.c ├── ice.h ├── icem.c ├── icesdp.c ├── icestr.c ├── mod.mk ├── stunsrv.c └── util.c ├── jbuf ├── jbuf.c └── mod.mk ├── list ├── list.c └── mod.mk ├── lock ├── lock.c ├── mod.mk ├── rwlock.c ├── symbian │ └── rmutex.cpp └── win32 │ └── lock.c ├── main ├── epoll.c ├── init.c ├── main.c ├── main.h ├── method.c ├── mod.mk └── symbian │ └── actsched.cpp ├── mbuf ├── mbuf.c └── mod.mk ├── md5 ├── md5.c ├── md5.h ├── mod.mk └── wrap.c ├── mem ├── mem.c └── mod.mk ├── mod ├── dl.c ├── mod.c ├── mod.mk ├── mod_internal.h ├── symbian │ └── rlib.cpp └── win32 │ └── dll.c ├── mqueue ├── mod.mk ├── mqueue.c ├── mqueue.h └── win32 │ └── pipe.c ├── natbd ├── filtering.c ├── genalg.c ├── hairpinning.c ├── lifetime.c ├── mapping.c ├── mod.mk └── natstr.c ├── net ├── bsd │ └── brt.c ├── if.c ├── ifaddrs.c ├── linux │ └── rt.c ├── mod.mk ├── net.c ├── netstr.c ├── posix │ └── pif.c ├── rt.c ├── sock.c ├── sockopt.c ├── symbian │ ├── rconn.cpp │ ├── sif.cpp │ ├── snet.cpp │ └── srt.cpp └── win32 │ └── wif.c ├── rtp ├── fb.c ├── member.c ├── mod.mk ├── ntp.c ├── pkt.c ├── rr.c ├── rtcp.c ├── rtcp.h ├── rtp.c ├── sdes.c ├── sess.c └── source.c ├── sa ├── mod.mk ├── ntop.c ├── printaddr.c ├── pton.c ├── sa.c └── sa.h ├── sdp ├── attr.c ├── format.c ├── media.c ├── mod.mk ├── msg.c ├── sdp.h ├── session.c └── str.c ├── sha ├── mod.mk └── sha1.c ├── sip ├── addr.c ├── auth.c ├── cseq.c ├── ctrans.c ├── dialog.c ├── keepalive.c ├── keepalive_udp.c ├── mod.mk ├── msg.c ├── param.c ├── reply.c ├── request.c ├── sip.c ├── sip.h ├── strans.c ├── transp.c └── via.c ├── sipevent ├── listen.c ├── mod.mk ├── msg.c ├── notify.c ├── sipevent.h └── subscribe.c ├── sipreg ├── mod.mk └── reg.c ├── sipsess ├── accept.c ├── ack.c ├── close.c ├── connect.c ├── info.c ├── listen.c ├── mod.mk ├── modify.c ├── reply.c ├── request.c ├── sess.c └── sipsess.h ├── stun ├── addr.c ├── attr.c ├── ctrans.c ├── dnsdisc.c ├── hdr.c ├── ind.c ├── keepalive.c ├── mod.mk ├── msg.c ├── rep.c ├── req.c ├── stun.c ├── stun.h └── stunstr.c ├── sys ├── daemon.c ├── endian.c ├── fs.c ├── mod.mk ├── rand.c ├── sleep.c ├── symbian │ └── sleep.cpp └── sys.c ├── tcp ├── mod.mk ├── symbian │ └── tcp.cpp ├── tcp.c └── tcp_high.c ├── telev ├── mod.mk └── telev.c ├── tls ├── mod.mk └── openssl │ ├── tls.c │ ├── tls.h │ ├── tls_tcp.c │ └── tls_udp.c ├── tmr ├── mod.mk └── tmr.c ├── turn ├── chan.c ├── mod.mk ├── perm.c ├── turnc.c └── turnc.h ├── udp ├── mod.mk ├── symbian │ └── udp.cpp └── udp.c └── uri ├── mod.mk ├── ucmp.c ├── uri.c └── uric.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/Makefile -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/docs -------------------------------------------------------------------------------- /debian/libre-dev.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/libre-dev.dirs -------------------------------------------------------------------------------- /debian/libre-dev.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/libre-dev.files -------------------------------------------------------------------------------- /debian/libre.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /debian/libre.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/libre.files -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/debian/rules -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/docs/ChangeLog -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/docs/README -------------------------------------------------------------------------------- /docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/docs/TODO -------------------------------------------------------------------------------- /docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/docs/main.dox -------------------------------------------------------------------------------- /docs/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/docs/symbols.txt -------------------------------------------------------------------------------- /include/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re.h -------------------------------------------------------------------------------- /include/re_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_base64.h -------------------------------------------------------------------------------- /include/re_bfcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_bfcp.h -------------------------------------------------------------------------------- /include/re_bitv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_bitv.h -------------------------------------------------------------------------------- /include/re_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_conf.h -------------------------------------------------------------------------------- /include/re_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_crc32.h -------------------------------------------------------------------------------- /include/re_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_dbg.h -------------------------------------------------------------------------------- /include/re_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_dns.h -------------------------------------------------------------------------------- /include/re_fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_fmt.h -------------------------------------------------------------------------------- /include/re_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_hash.h -------------------------------------------------------------------------------- /include/re_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_hmac.h -------------------------------------------------------------------------------- /include/re_httpauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_httpauth.h -------------------------------------------------------------------------------- /include/re_ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_ice.h -------------------------------------------------------------------------------- /include/re_jbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_jbuf.h -------------------------------------------------------------------------------- /include/re_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_list.h -------------------------------------------------------------------------------- /include/re_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_lock.h -------------------------------------------------------------------------------- /include/re_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_main.h -------------------------------------------------------------------------------- /include/re_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_mbuf.h -------------------------------------------------------------------------------- /include/re_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_md5.h -------------------------------------------------------------------------------- /include/re_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_mem.h -------------------------------------------------------------------------------- /include/re_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_mod.h -------------------------------------------------------------------------------- /include/re_mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_mqueue.h -------------------------------------------------------------------------------- /include/re_natbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_natbd.h -------------------------------------------------------------------------------- /include/re_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_net.h -------------------------------------------------------------------------------- /include/re_rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_rtp.h -------------------------------------------------------------------------------- /include/re_sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sa.h -------------------------------------------------------------------------------- /include/re_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sdp.h -------------------------------------------------------------------------------- /include/re_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sha.h -------------------------------------------------------------------------------- /include/re_sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sip.h -------------------------------------------------------------------------------- /include/re_sipevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sipevent.h -------------------------------------------------------------------------------- /include/re_sipreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sipreg.h -------------------------------------------------------------------------------- /include/re_sipsess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sipsess.h -------------------------------------------------------------------------------- /include/re_stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_stun.h -------------------------------------------------------------------------------- /include/re_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_sys.h -------------------------------------------------------------------------------- /include/re_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_tcp.h -------------------------------------------------------------------------------- /include/re_telev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_telev.h -------------------------------------------------------------------------------- /include/re_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_tls.h -------------------------------------------------------------------------------- /include/re_tmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_tmr.h -------------------------------------------------------------------------------- /include/re_turn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_turn.h -------------------------------------------------------------------------------- /include/re_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_types.h -------------------------------------------------------------------------------- /include/re_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_udp.h -------------------------------------------------------------------------------- /include/re_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/include/re_uri.h -------------------------------------------------------------------------------- /mk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/CMakeLists.txt -------------------------------------------------------------------------------- /mk/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/Doxyfile -------------------------------------------------------------------------------- /mk/re.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/re.mk -------------------------------------------------------------------------------- /mk/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/bld.inf -------------------------------------------------------------------------------- /mk/symbian/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/dll.cpp -------------------------------------------------------------------------------- /mk/symbian/ecrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/ecrt.cpp -------------------------------------------------------------------------------- /mk/symbian/re.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/re.mmp -------------------------------------------------------------------------------- /mk/symbian/rebfcp.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/rebfcp.mmp -------------------------------------------------------------------------------- /mk/symbian/redns.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/redns.mmp -------------------------------------------------------------------------------- /mk/symbian/resdp.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/resdp.mmp -------------------------------------------------------------------------------- /mk/symbian/resip.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/resip.mmp -------------------------------------------------------------------------------- /mk/symbian/resipevent.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/resipevent.mmp -------------------------------------------------------------------------------- /mk/symbian/resipsess.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/resipsess.mmp -------------------------------------------------------------------------------- /mk/symbian/restun.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/symbian/restun.mmp -------------------------------------------------------------------------------- /mk/win32/re.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/mk/win32/re.vcproj -------------------------------------------------------------------------------- /src/base64/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/base64/b64.c -------------------------------------------------------------------------------- /src/base64/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/base64/mod.mk -------------------------------------------------------------------------------- /src/bfcp/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/attr.c -------------------------------------------------------------------------------- /src/bfcp/bfcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/bfcp.h -------------------------------------------------------------------------------- /src/bfcp/hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/hdr.c -------------------------------------------------------------------------------- /src/bfcp/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/mod.mk -------------------------------------------------------------------------------- /src/bfcp/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/msg.c -------------------------------------------------------------------------------- /src/bfcp/rep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/rep.c -------------------------------------------------------------------------------- /src/bfcp/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/req.c -------------------------------------------------------------------------------- /src/bfcp/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/sock.c -------------------------------------------------------------------------------- /src/bfcp/transp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/bfcp/transp.c -------------------------------------------------------------------------------- /src/conf/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/conf/conf.c -------------------------------------------------------------------------------- /src/conf/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/conf/mod.mk -------------------------------------------------------------------------------- /src/crc32/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/crc32/crc32.c -------------------------------------------------------------------------------- /src/crc32/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/crc32/mod.mk -------------------------------------------------------------------------------- /src/dbg/dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dbg/dbg.c -------------------------------------------------------------------------------- /src/dbg/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dbg/mod.mk -------------------------------------------------------------------------------- /src/dns/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/client.c -------------------------------------------------------------------------------- /src/dns/cstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/cstr.c -------------------------------------------------------------------------------- /src/dns/darwin/srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/darwin/srv.c -------------------------------------------------------------------------------- /src/dns/dname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/dname.c -------------------------------------------------------------------------------- /src/dns/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/dns.h -------------------------------------------------------------------------------- /src/dns/hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/hdr.c -------------------------------------------------------------------------------- /src/dns/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/mod.mk -------------------------------------------------------------------------------- /src/dns/ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/ns.c -------------------------------------------------------------------------------- /src/dns/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/res.c -------------------------------------------------------------------------------- /src/dns/rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/rr.c -------------------------------------------------------------------------------- /src/dns/rrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/rrlist.c -------------------------------------------------------------------------------- /src/dns/symbian/srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/symbian/srv.cpp -------------------------------------------------------------------------------- /src/dns/win32/srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/dns/win32/srv.c -------------------------------------------------------------------------------- /src/fmt/ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/ch.c -------------------------------------------------------------------------------- /src/fmt/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/hexdump.c -------------------------------------------------------------------------------- /src/fmt/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/mod.mk -------------------------------------------------------------------------------- /src/fmt/pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/pl.c -------------------------------------------------------------------------------- /src/fmt/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/print.c -------------------------------------------------------------------------------- /src/fmt/prm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/prm.c -------------------------------------------------------------------------------- /src/fmt/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/regex.c -------------------------------------------------------------------------------- /src/fmt/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/str.c -------------------------------------------------------------------------------- /src/fmt/str_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/str_error.c -------------------------------------------------------------------------------- /src/fmt/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/fmt/time.c -------------------------------------------------------------------------------- /src/hash/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/hash/func.c -------------------------------------------------------------------------------- /src/hash/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/hash/hash.c -------------------------------------------------------------------------------- /src/hash/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/hash/mod.mk -------------------------------------------------------------------------------- /src/hmac/hmac_sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/hmac/hmac_sha1.c -------------------------------------------------------------------------------- /src/hmac/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/hmac/mod.mk -------------------------------------------------------------------------------- /src/httpauth/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/httpauth/basic.c -------------------------------------------------------------------------------- /src/httpauth/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/httpauth/digest.c -------------------------------------------------------------------------------- /src/httpauth/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/httpauth/mod.mk -------------------------------------------------------------------------------- /src/ice/cand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/cand.c -------------------------------------------------------------------------------- /src/ice/candpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/candpair.c -------------------------------------------------------------------------------- /src/ice/chklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/chklist.c -------------------------------------------------------------------------------- /src/ice/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/comp.c -------------------------------------------------------------------------------- /src/ice/connchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/connchk.c -------------------------------------------------------------------------------- /src/ice/gather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/gather.c -------------------------------------------------------------------------------- /src/ice/ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/ice.c -------------------------------------------------------------------------------- /src/ice/ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/ice.h -------------------------------------------------------------------------------- /src/ice/icem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/icem.c -------------------------------------------------------------------------------- /src/ice/icesdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/icesdp.c -------------------------------------------------------------------------------- /src/ice/icestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/icestr.c -------------------------------------------------------------------------------- /src/ice/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/mod.mk -------------------------------------------------------------------------------- /src/ice/stunsrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/stunsrv.c -------------------------------------------------------------------------------- /src/ice/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/ice/util.c -------------------------------------------------------------------------------- /src/jbuf/jbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/jbuf/jbuf.c -------------------------------------------------------------------------------- /src/jbuf/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/jbuf/mod.mk -------------------------------------------------------------------------------- /src/list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/list/list.c -------------------------------------------------------------------------------- /src/list/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/list/mod.mk -------------------------------------------------------------------------------- /src/lock/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/lock/lock.c -------------------------------------------------------------------------------- /src/lock/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/lock/mod.mk -------------------------------------------------------------------------------- /src/lock/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/lock/rwlock.c -------------------------------------------------------------------------------- /src/lock/symbian/rmutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/lock/symbian/rmutex.cpp -------------------------------------------------------------------------------- /src/lock/win32/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/lock/win32/lock.c -------------------------------------------------------------------------------- /src/main/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/main/epoll.c -------------------------------------------------------------------------------- /src/main/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/main/init.c -------------------------------------------------------------------------------- /src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/main/main.c -------------------------------------------------------------------------------- /src/main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/main/main.h -------------------------------------------------------------------------------- /src/main/method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/main/method.c -------------------------------------------------------------------------------- /src/main/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/main/mod.mk -------------------------------------------------------------------------------- /src/main/symbian/actsched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/main/symbian/actsched.cpp -------------------------------------------------------------------------------- /src/mbuf/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mbuf/mbuf.c -------------------------------------------------------------------------------- /src/mbuf/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mbuf/mod.mk -------------------------------------------------------------------------------- /src/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/md5/md5.c -------------------------------------------------------------------------------- /src/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/md5/md5.h -------------------------------------------------------------------------------- /src/md5/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/md5/mod.mk -------------------------------------------------------------------------------- /src/md5/wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/md5/wrap.c -------------------------------------------------------------------------------- /src/mem/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mem/mem.c -------------------------------------------------------------------------------- /src/mem/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mem/mod.mk -------------------------------------------------------------------------------- /src/mod/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mod/dl.c -------------------------------------------------------------------------------- /src/mod/mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mod/mod.c -------------------------------------------------------------------------------- /src/mod/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mod/mod.mk -------------------------------------------------------------------------------- /src/mod/mod_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mod/mod_internal.h -------------------------------------------------------------------------------- /src/mod/symbian/rlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mod/symbian/rlib.cpp -------------------------------------------------------------------------------- /src/mod/win32/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mod/win32/dll.c -------------------------------------------------------------------------------- /src/mqueue/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mqueue/mod.mk -------------------------------------------------------------------------------- /src/mqueue/mqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mqueue/mqueue.c -------------------------------------------------------------------------------- /src/mqueue/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mqueue/mqueue.h -------------------------------------------------------------------------------- /src/mqueue/win32/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/mqueue/win32/pipe.c -------------------------------------------------------------------------------- /src/natbd/filtering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/natbd/filtering.c -------------------------------------------------------------------------------- /src/natbd/genalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/natbd/genalg.c -------------------------------------------------------------------------------- /src/natbd/hairpinning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/natbd/hairpinning.c -------------------------------------------------------------------------------- /src/natbd/lifetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/natbd/lifetime.c -------------------------------------------------------------------------------- /src/natbd/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/natbd/mapping.c -------------------------------------------------------------------------------- /src/natbd/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/natbd/mod.mk -------------------------------------------------------------------------------- /src/natbd/natstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/natbd/natstr.c -------------------------------------------------------------------------------- /src/net/bsd/brt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/bsd/brt.c -------------------------------------------------------------------------------- /src/net/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/if.c -------------------------------------------------------------------------------- /src/net/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/ifaddrs.c -------------------------------------------------------------------------------- /src/net/linux/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/linux/rt.c -------------------------------------------------------------------------------- /src/net/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/mod.mk -------------------------------------------------------------------------------- /src/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/net.c -------------------------------------------------------------------------------- /src/net/netstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/netstr.c -------------------------------------------------------------------------------- /src/net/posix/pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/posix/pif.c -------------------------------------------------------------------------------- /src/net/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/rt.c -------------------------------------------------------------------------------- /src/net/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/sock.c -------------------------------------------------------------------------------- /src/net/sockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/sockopt.c -------------------------------------------------------------------------------- /src/net/symbian/rconn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/symbian/rconn.cpp -------------------------------------------------------------------------------- /src/net/symbian/sif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/symbian/sif.cpp -------------------------------------------------------------------------------- /src/net/symbian/snet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/symbian/snet.cpp -------------------------------------------------------------------------------- /src/net/symbian/srt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/symbian/srt.cpp -------------------------------------------------------------------------------- /src/net/win32/wif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/net/win32/wif.c -------------------------------------------------------------------------------- /src/rtp/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/fb.c -------------------------------------------------------------------------------- /src/rtp/member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/member.c -------------------------------------------------------------------------------- /src/rtp/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/mod.mk -------------------------------------------------------------------------------- /src/rtp/ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/ntp.c -------------------------------------------------------------------------------- /src/rtp/pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/pkt.c -------------------------------------------------------------------------------- /src/rtp/rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/rr.c -------------------------------------------------------------------------------- /src/rtp/rtcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/rtcp.c -------------------------------------------------------------------------------- /src/rtp/rtcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/rtcp.h -------------------------------------------------------------------------------- /src/rtp/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/rtp.c -------------------------------------------------------------------------------- /src/rtp/sdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/sdes.c -------------------------------------------------------------------------------- /src/rtp/sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/sess.c -------------------------------------------------------------------------------- /src/rtp/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/rtp/source.c -------------------------------------------------------------------------------- /src/sa/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sa/mod.mk -------------------------------------------------------------------------------- /src/sa/ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sa/ntop.c -------------------------------------------------------------------------------- /src/sa/printaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sa/printaddr.c -------------------------------------------------------------------------------- /src/sa/pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sa/pton.c -------------------------------------------------------------------------------- /src/sa/sa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sa/sa.c -------------------------------------------------------------------------------- /src/sa/sa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sa/sa.h -------------------------------------------------------------------------------- /src/sdp/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/attr.c -------------------------------------------------------------------------------- /src/sdp/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/format.c -------------------------------------------------------------------------------- /src/sdp/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/media.c -------------------------------------------------------------------------------- /src/sdp/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/mod.mk -------------------------------------------------------------------------------- /src/sdp/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/msg.c -------------------------------------------------------------------------------- /src/sdp/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/sdp.h -------------------------------------------------------------------------------- /src/sdp/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/session.c -------------------------------------------------------------------------------- /src/sdp/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sdp/str.c -------------------------------------------------------------------------------- /src/sha/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sha/mod.mk -------------------------------------------------------------------------------- /src/sha/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sha/sha1.c -------------------------------------------------------------------------------- /src/sip/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/addr.c -------------------------------------------------------------------------------- /src/sip/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/auth.c -------------------------------------------------------------------------------- /src/sip/cseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/cseq.c -------------------------------------------------------------------------------- /src/sip/ctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/ctrans.c -------------------------------------------------------------------------------- /src/sip/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/dialog.c -------------------------------------------------------------------------------- /src/sip/keepalive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/keepalive.c -------------------------------------------------------------------------------- /src/sip/keepalive_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/keepalive_udp.c -------------------------------------------------------------------------------- /src/sip/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/mod.mk -------------------------------------------------------------------------------- /src/sip/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/msg.c -------------------------------------------------------------------------------- /src/sip/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/param.c -------------------------------------------------------------------------------- /src/sip/reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/reply.c -------------------------------------------------------------------------------- /src/sip/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/request.c -------------------------------------------------------------------------------- /src/sip/sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/sip.c -------------------------------------------------------------------------------- /src/sip/sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/sip.h -------------------------------------------------------------------------------- /src/sip/strans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/strans.c -------------------------------------------------------------------------------- /src/sip/transp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/transp.c -------------------------------------------------------------------------------- /src/sip/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sip/via.c -------------------------------------------------------------------------------- /src/sipevent/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipevent/listen.c -------------------------------------------------------------------------------- /src/sipevent/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipevent/mod.mk -------------------------------------------------------------------------------- /src/sipevent/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipevent/msg.c -------------------------------------------------------------------------------- /src/sipevent/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipevent/notify.c -------------------------------------------------------------------------------- /src/sipevent/sipevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipevent/sipevent.h -------------------------------------------------------------------------------- /src/sipevent/subscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipevent/subscribe.c -------------------------------------------------------------------------------- /src/sipreg/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipreg/mod.mk -------------------------------------------------------------------------------- /src/sipreg/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipreg/reg.c -------------------------------------------------------------------------------- /src/sipsess/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/accept.c -------------------------------------------------------------------------------- /src/sipsess/ack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/ack.c -------------------------------------------------------------------------------- /src/sipsess/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/close.c -------------------------------------------------------------------------------- /src/sipsess/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/connect.c -------------------------------------------------------------------------------- /src/sipsess/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/info.c -------------------------------------------------------------------------------- /src/sipsess/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/listen.c -------------------------------------------------------------------------------- /src/sipsess/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/mod.mk -------------------------------------------------------------------------------- /src/sipsess/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/modify.c -------------------------------------------------------------------------------- /src/sipsess/reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/reply.c -------------------------------------------------------------------------------- /src/sipsess/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/request.c -------------------------------------------------------------------------------- /src/sipsess/sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/sess.c -------------------------------------------------------------------------------- /src/sipsess/sipsess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sipsess/sipsess.h -------------------------------------------------------------------------------- /src/stun/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/addr.c -------------------------------------------------------------------------------- /src/stun/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/attr.c -------------------------------------------------------------------------------- /src/stun/ctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/ctrans.c -------------------------------------------------------------------------------- /src/stun/dnsdisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/dnsdisc.c -------------------------------------------------------------------------------- /src/stun/hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/hdr.c -------------------------------------------------------------------------------- /src/stun/ind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/ind.c -------------------------------------------------------------------------------- /src/stun/keepalive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/keepalive.c -------------------------------------------------------------------------------- /src/stun/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/mod.mk -------------------------------------------------------------------------------- /src/stun/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/msg.c -------------------------------------------------------------------------------- /src/stun/rep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/rep.c -------------------------------------------------------------------------------- /src/stun/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/req.c -------------------------------------------------------------------------------- /src/stun/stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/stun.c -------------------------------------------------------------------------------- /src/stun/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/stun.h -------------------------------------------------------------------------------- /src/stun/stunstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/stun/stunstr.c -------------------------------------------------------------------------------- /src/sys/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/daemon.c -------------------------------------------------------------------------------- /src/sys/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/endian.c -------------------------------------------------------------------------------- /src/sys/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/fs.c -------------------------------------------------------------------------------- /src/sys/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/mod.mk -------------------------------------------------------------------------------- /src/sys/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/rand.c -------------------------------------------------------------------------------- /src/sys/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/sleep.c -------------------------------------------------------------------------------- /src/sys/symbian/sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/symbian/sleep.cpp -------------------------------------------------------------------------------- /src/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/sys/sys.c -------------------------------------------------------------------------------- /src/tcp/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tcp/mod.mk -------------------------------------------------------------------------------- /src/tcp/symbian/tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tcp/symbian/tcp.cpp -------------------------------------------------------------------------------- /src/tcp/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tcp/tcp.c -------------------------------------------------------------------------------- /src/tcp/tcp_high.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tcp/tcp_high.c -------------------------------------------------------------------------------- /src/telev/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/telev/mod.mk -------------------------------------------------------------------------------- /src/telev/telev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/telev/telev.c -------------------------------------------------------------------------------- /src/tls/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tls/mod.mk -------------------------------------------------------------------------------- /src/tls/openssl/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tls/openssl/tls.c -------------------------------------------------------------------------------- /src/tls/openssl/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tls/openssl/tls.h -------------------------------------------------------------------------------- /src/tls/openssl/tls_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tls/openssl/tls_tcp.c -------------------------------------------------------------------------------- /src/tls/openssl/tls_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tls/openssl/tls_udp.c -------------------------------------------------------------------------------- /src/tmr/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tmr/mod.mk -------------------------------------------------------------------------------- /src/tmr/tmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/tmr/tmr.c -------------------------------------------------------------------------------- /src/turn/chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/turn/chan.c -------------------------------------------------------------------------------- /src/turn/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/turn/mod.mk -------------------------------------------------------------------------------- /src/turn/perm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/turn/perm.c -------------------------------------------------------------------------------- /src/turn/turnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/turn/turnc.c -------------------------------------------------------------------------------- /src/turn/turnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/turn/turnc.h -------------------------------------------------------------------------------- /src/udp/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/udp/mod.mk -------------------------------------------------------------------------------- /src/udp/symbian/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/udp/symbian/udp.cpp -------------------------------------------------------------------------------- /src/udp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/udp/udp.c -------------------------------------------------------------------------------- /src/uri/mod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/uri/mod.mk -------------------------------------------------------------------------------- /src/uri/ucmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/uri/ucmp.c -------------------------------------------------------------------------------- /src/uri/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/uri/uri.c -------------------------------------------------------------------------------- /src/uri/uric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muromec/libre/HEAD/src/uri/uric.c --------------------------------------------------------------------------------