├── 5.3.0 ├── exosip-5.3.0 │ ├── debian │ │ ├── compat │ │ ├── libexosip2.install │ │ ├── libexosip2-dev.install │ │ └── rules │ ├── AUTHORS │ ├── include │ │ ├── Makefile.am │ │ └── eXosip2 │ │ │ └── Makefile.am │ ├── platform │ │ ├── Makefile.am │ │ └── vsnet │ │ │ └── Makefile.am │ ├── help │ │ ├── Makefile.am │ │ ├── doxygen │ │ │ └── Makefile.am │ │ └── INSTALL.linux │ ├── scripts │ │ ├── Makefile.am │ │ └── aclocal-include.m4 │ ├── .clang-format │ └── tools │ │ └── Makefile.am └── libosip2-5.3.0 │ ├── src │ ├── osip2 │ │ └── .libs │ │ │ ├── libosip2.so │ │ │ ├── libosip2.so.15 │ │ │ ├── libosip2.a │ │ │ └── libosip2.so.15.0.0 │ ├── Makefile.am │ ├── osipparser2 │ │ └── .libs │ │ │ ├── libosipparser2.so │ │ │ ├── libosipparser2.so.15 │ │ │ ├── libosipparser2.a │ │ │ └── libosipparser2.so.15.0.0 │ └── test │ │ └── res │ │ ├── sip91 │ │ ├── sip92 │ │ ├── sip93 │ │ ├── sip94 │ │ ├── tos.txt │ │ ├── froms.txt │ │ ├── contacts.txt │ │ ├── sip-malformed13 │ │ ├── sip-malformed14 │ │ ├── sip-malformed15 │ │ ├── sip-malformed16 │ │ ├── sip-malformed17 │ │ ├── callids.txt │ │ ├── sdp8 │ │ ├── sdp4 │ │ ├── sdp15 │ │ ├── sdp5 │ │ ├── sip-malformed18 │ │ ├── sdp7 │ │ ├── sdp1 │ │ ├── sip35 │ │ ├── sdp10 │ │ ├── sip11 │ │ ├── sip38 │ │ ├── sdp11 │ │ ├── sdp9 │ │ ├── sip30 │ │ ├── sip83 │ │ ├── sdp0 │ │ ├── sip39 │ │ ├── sip41 │ │ ├── sip43 │ │ ├── sip5 │ │ ├── sip6 │ │ ├── sip72 │ │ ├── sip1 │ │ ├── sip13 │ │ ├── sip14 │ │ ├── sip18 │ │ ├── sip19 │ │ ├── sip33 │ │ ├── sip34 │ │ ├── sip7 │ │ ├── sip73 │ │ ├── sip29 │ │ ├── sip32 │ │ ├── sip37 │ │ ├── sip80 │ │ ├── sip82 │ │ ├── sip15 │ │ ├── sip16 │ │ ├── sip40 │ │ ├── sip54 │ │ ├── sip23 │ │ ├── sip20 │ │ ├── sdp13 │ │ ├── sip48 │ │ ├── sdp6 │ │ ├── sip84 │ │ ├── sip31 │ │ ├── sip46 │ │ ├── sip22 │ │ ├── sip3 │ │ ├── sdp2 │ │ ├── sip9 │ │ ├── sip24 │ │ ├── sip27 │ │ ├── sip28 │ │ ├── sip89 │ │ ├── sip21 │ │ ├── sip25 │ │ ├── sip26 │ │ ├── sip10 │ │ ├── sdp3 │ │ ├── sip-malformed7 │ │ ├── sip36 │ │ ├── sip77 │ │ ├── sip53 │ │ ├── sip-malformed1 │ │ ├── sip-malformed11 │ │ ├── sip47 │ │ ├── sip49 │ │ ├── urls-3.txt │ │ ├── sip62 │ │ ├── sip65 │ │ ├── sip52 │ │ ├── sip51 │ │ ├── sip55 │ │ ├── sip78 │ │ ├── sip86 │ │ ├── sip58 │ │ ├── sip59 │ │ ├── sip4 │ │ ├── sip57 │ │ ├── sip-malformed0 │ │ ├── contenttypes.txt │ │ ├── sip63 │ │ ├── sip71 │ │ ├── sdp12 │ │ ├── sip90 │ │ ├── sip60 │ │ ├── sip76 │ │ ├── sip96 │ │ ├── sip17 │ │ ├── sip-malformed5 │ │ ├── sip69 │ │ ├── routes.txt │ │ ├── sip-malformed2 │ │ ├── sip88 │ │ ├── sip-malformed12 │ │ ├── sip-malformed6 │ │ └── sip-malformed8 │ ├── BUGS │ ├── include │ ├── Makefile.am │ ├── osip2 │ │ └── Makefile.am │ └── osipparser2 │ │ └── Makefile.am │ ├── help │ ├── man │ │ └── Makefile.am │ ├── Makefile.am │ ├── INSTALL.bsd │ ├── INSTALL.unix │ ├── INSTALL.linux │ ├── doxygen │ │ └── Makefile.am │ ├── INSTALL.linuxe │ └── INSTALL.vxworks │ ├── platform │ ├── rpm │ │ ├── Makefile.am │ │ └── libosip.spec │ ├── Makefile.am │ └── vsnet │ │ └── Makefile.am │ ├── scripts │ ├── Makefile.am │ └── aclocal-include.m4 │ ├── TODO │ ├── AUTHORS │ └── libosip2.pc.in ├── c-ares-1.12.0 ├── .libs │ ├── libcares.so │ ├── libcares.so.2 │ ├── libcares.a │ └── libcares.so.2.2.0 ├── ares_get_servers_ports.3 ├── ares_set_servers_ports.3 ├── ares_set_servers_ports_csv.3 ├── acountry.c ├── cares.rc ├── recompile.sh ├── ares_version.c ├── windows_port.c └── test │ └── configure.ac ├── libexosip2-5.0.0 ├── src │ └── .libs │ │ ├── libeXosip2.so │ │ ├── libeXosip2.so.12 │ │ ├── libeXosip2.a │ │ └── libeXosip2.so.12.0.0 ├── AUTHORS ├── include │ ├── Makefile.am │ └── eXosip2 │ │ └── Makefile.am ├── platform │ ├── Makefile.am │ └── vsnet │ │ └── Makefile.am ├── help │ ├── Makefile.am │ ├── doxygen │ │ └── Makefile.am │ └── INSTALL.linux ├── scripts │ └── Makefile.am ├── tools │ └── Makefile.am ├── recompile.sh └── Makefile.am ├── libosip2-5.0.0 ├── src │ ├── osip2 │ │ └── .libs │ │ │ ├── libosip2.so │ │ │ ├── libosip2.so.12 │ │ │ ├── libosip2.a │ │ │ └── libosip2.so.12.0.0 │ ├── Makefile.am │ ├── osipparser2 │ │ └── .libs │ │ │ ├── libosipparser2.so │ │ │ ├── libosipparser2.so.12 │ │ │ ├── libosipparser2.a │ │ │ └── libosipparser2.so.12.0.0 │ └── test │ │ └── res │ │ ├── tos.txt │ │ ├── froms.txt │ │ ├── contacts.txt │ │ ├── callids.txt │ │ ├── sdp8 │ │ ├── sdp4 │ │ ├── sdp15 │ │ ├── sdp5 │ │ ├── sdp7 │ │ ├── sdp1 │ │ ├── sip35 │ │ ├── sdp10 │ │ ├── sdp9 │ │ ├── sip11 │ │ ├── sip38 │ │ ├── sdp11 │ │ ├── sip30 │ │ ├── sip83 │ │ ├── sip39 │ │ ├── sip41 │ │ ├── sdp0 │ │ ├── sip43 │ │ ├── sip5 │ │ ├── sip6 │ │ ├── sip72 │ │ ├── sip1 │ │ ├── sip13 │ │ ├── sip14 │ │ ├── sip18 │ │ ├── sip19 │ │ ├── sip32 │ │ ├── sip33 │ │ ├── sip34 │ │ ├── sip7 │ │ ├── sip73 │ │ ├── sip29 │ │ ├── sip37 │ │ ├── sip80 │ │ ├── sip82 │ │ ├── sip40 │ │ ├── sip15 │ │ ├── sip16 │ │ ├── sip23 │ │ ├── sip54 │ │ ├── sip20 │ │ ├── sdp13 │ │ ├── sip48 │ │ ├── sdp6 │ │ ├── sip46 │ │ ├── sip84 │ │ ├── sip31 │ │ ├── sip22 │ │ ├── sip3 │ │ ├── sdp2 │ │ ├── sip9 │ │ ├── sip24 │ │ ├── sip27 │ │ ├── sip28 │ │ ├── sip21 │ │ ├── sip25 │ │ ├── sip26 │ │ ├── sip10 │ │ ├── sdp3 │ │ ├── sip-malformed7 │ │ ├── sip36 │ │ ├── sip77 │ │ ├── sip53 │ │ ├── sip-malformed1 │ │ ├── sip-malformed11 │ │ ├── sip47 │ │ ├── sip49 │ │ ├── sip62 │ │ ├── sip65 │ │ ├── sip52 │ │ ├── sip55 │ │ ├── sip51 │ │ ├── sip78 │ │ ├── sip86 │ │ ├── sip58 │ │ ├── sip59 │ │ ├── sip4 │ │ ├── sip57 │ │ ├── sip-malformed0 │ │ ├── contenttypes.txt │ │ ├── sip63 │ │ ├── sip71 │ │ ├── sdp12 │ │ ├── sip-malformed12~ │ │ ├── sip60 │ │ ├── sip76 │ │ ├── sip17 │ │ ├── sip-malformed5 │ │ ├── sip69 │ │ ├── routes.txt │ │ ├── sip-malformed2 │ │ ├── sip-malformed12 │ │ ├── sip-malformed6 │ │ ├── sip-malformed8 │ │ ├── sip-malformed4 │ │ ├── recordroutes.txt │ │ ├── sip-malformed10 │ │ └── sip-malformed3 ├── BUGS ├── include │ ├── Makefile.am │ ├── osip2 │ │ └── Makefile.am │ └── osipparser2 │ │ └── Makefile.am ├── help │ ├── man │ │ └── Makefile.am │ ├── Makefile.am │ ├── INSTALL.bsd │ ├── INSTALL.linux │ ├── INSTALL.unix │ ├── doxygen │ │ └── Makefile.am │ ├── INSTALL.linuxe │ └── INSTALL.vxworks ├── recompile.sh ├── platform │ ├── rpm │ │ ├── Makefile.am │ │ └── libosip.spec │ ├── Makefile.am │ └── vsnet │ │ └── Makefile.am ├── scripts │ ├── Makefile.am │ └── aclocal-include.m4 ├── TODO ├── AUTHORS └── libosip2.pc.in ├── src-win ├── exosip │ ├── AUTHORS │ ├── include │ │ ├── Makefile.am │ │ └── eXosip2 │ │ │ └── Makefile.am │ ├── platform │ │ ├── Makefile.am │ │ └── vsnet │ │ │ └── Makefile.am │ ├── help │ │ ├── Makefile.am │ │ ├── doxygen │ │ │ └── Makefile.am │ │ └── INSTALL.linux │ ├── scripts │ │ └── Makefile.am │ ├── tools │ │ └── Makefile.am │ └── Makefile.am ├── osip │ ├── BUGS │ ├── src │ │ ├── Makefile.am │ │ └── test │ │ │ └── res │ │ │ ├── tos.txt │ │ │ ├── froms.txt │ │ │ ├── contacts.txt │ │ │ ├── callids.txt │ │ │ ├── sdp8 │ │ │ ├── sdp4 │ │ │ ├── sdp15 │ │ │ ├── sdp5 │ │ │ ├── sdp7 │ │ │ ├── sdp1 │ │ │ ├── sip35 │ │ │ ├── sdp9 │ │ │ ├── sip11 │ │ │ ├── sip38 │ │ │ ├── sdp10 │ │ │ ├── sdp11 │ │ │ ├── sip30 │ │ │ ├── sip83 │ │ │ ├── sip39 │ │ │ ├── sip41 │ │ │ ├── sdp0 │ │ │ ├── sip43 │ │ │ ├── sip5 │ │ │ ├── sip6 │ │ │ ├── sip72 │ │ │ ├── sip1 │ │ │ ├── sip13 │ │ │ ├── sip14 │ │ │ ├── sip18 │ │ │ ├── sip19 │ │ │ ├── sip33 │ │ │ ├── sip34 │ │ │ ├── sip7 │ │ │ ├── sip73 │ │ │ ├── sip29 │ │ │ ├── sip32 │ │ │ ├── sip37 │ │ │ ├── sip80 │ │ │ ├── sip82 │ │ │ ├── sip40 │ │ │ ├── sip15 │ │ │ ├── sip16 │ │ │ ├── sip54 │ │ │ ├── sip23 │ │ │ ├── sip20 │ │ │ ├── sdp13 │ │ │ ├── sip48 │ │ │ ├── sdp6 │ │ │ ├── sip46 │ │ │ ├── sip84 │ │ │ ├── sip3 │ │ │ ├── sip31 │ │ │ ├── sip22 │ │ │ ├── sdp2 │ │ │ ├── sip9 │ │ │ ├── sip24 │ │ │ ├── sip28 │ │ │ ├── sip21 │ │ │ ├── sip26 │ │ │ ├── sip27 │ │ │ ├── sip25 │ │ │ ├── sip10 │ │ │ ├── sdp3 │ │ │ ├── sip36 │ │ │ ├── sip-malformed7 │ │ │ ├── sip77 │ │ │ ├── sip-malformed1 │ │ │ ├── sip53 │ │ │ ├── sip49 │ │ │ ├── sip47 │ │ │ ├── sip-malformed11 │ │ │ ├── sip62 │ │ │ ├── sip65 │ │ │ ├── sip51 │ │ │ ├── sip52 │ │ │ ├── sip55 │ │ │ ├── sip78 │ │ │ ├── sip86 │ │ │ ├── sip58 │ │ │ ├── sip59 │ │ │ ├── sip4 │ │ │ ├── sip57 │ │ │ ├── sip-malformed0 │ │ │ ├── sip71 │ │ │ ├── sip63 │ │ │ ├── sdp12 │ │ │ ├── contenttypes.txt │ │ │ ├── sip76 │ │ │ ├── sip60 │ │ │ ├── sip17 │ │ │ ├── sip-malformed5 │ │ │ ├── sip69 │ │ │ ├── sip-malformed2 │ │ │ ├── sip-malformed12 │ │ │ ├── sip-malformed6 │ │ │ ├── sip-malformed8 │ │ │ ├── routes.txt │ │ │ ├── sip-malformed4 │ │ │ ├── sip-malformed10 │ │ │ ├── sip-malformed3 │ │ │ ├── recordroutes.txt │ │ │ ├── sip44 │ │ │ └── sip75 │ ├── include │ │ ├── Makefile.am │ │ ├── osip2 │ │ │ └── Makefile.am │ │ └── osipparser2 │ │ │ └── Makefile.am │ ├── help │ │ ├── man │ │ │ └── Makefile.am │ │ ├── Makefile.am │ │ ├── INSTALL.bsd │ │ ├── INSTALL.linux │ │ ├── INSTALL.unix │ │ ├── doxygen │ │ │ └── Makefile.am │ │ ├── INSTALL.linuxe │ │ └── INSTALL.vxworks │ ├── platform │ │ ├── rpm │ │ │ ├── Makefile.am │ │ │ └── libosip.spec │ │ ├── Makefile.am │ │ └── vsnet │ │ │ └── Makefile.am │ ├── scripts │ │ ├── Makefile.am │ │ └── aclocal-include.m4 │ ├── TODO │ ├── AUTHORS │ └── libosip2.pc.in └── c-ares │ ├── ares_get_servers_ports.3 │ ├── ares_set_servers_ports.3 │ ├── ares_set_servers_ports_csv.3 │ ├── cares.rc │ ├── acountry.c │ ├── ares_dup.pdf │ ├── ares_fds.pdf │ ├── ares_init.pdf │ ├── ares_query.pdf │ ├── ares_send.pdf │ ├── ares_cancel.pdf │ ├── ares_destroy.pdf │ ├── ares_getsock.pdf │ ├── ares_mkquery.pdf │ ├── ares_process.pdf │ ├── ares_search.pdf │ ├── ares_timeout.pdf │ ├── ares_version.pdf │ ├── ares_free_data.pdf │ ├── ares_inet_ntop.pdf │ ├── ares_inet_pton.pdf │ ├── ares_strerror.pdf │ ├── ares_create_query.pdf │ ├── ares_expand_name.pdf │ ├── ares_free_hostent.pdf │ ├── ares_free_string.pdf │ ├── ares_get_servers.pdf │ ├── ares_getnameinfo.pdf │ ├── ares_init_options.pdf │ ├── ares_library_init.pdf │ ├── ares_save_options.pdf │ ├── ares_set_servers.pdf │ ├── ares_set_sortlist.pdf │ ├── ares_destroy_options.pdf │ ├── ares_expand_string.pdf │ ├── ares_gethostbyaddr.pdf │ ├── ares_gethostbyname.pdf │ ├── ares_library_cleanup.pdf │ ├── ares_parse_a_reply.pdf │ ├── ares_parse_mx_reply.pdf │ ├── ares_parse_ns_reply.pdf │ ├── ares_parse_ptr_reply.pdf │ ├── ares_parse_soa_reply.pdf │ ├── ares_parse_srv_reply.pdf │ ├── ares_parse_txt_reply.pdf │ ├── ares_set_local_dev.pdf │ ├── ares_set_local_ip4.pdf │ ├── ares_set_local_ip6.pdf │ ├── ares_set_servers_csv.pdf │ ├── ares_get_servers_ports.pdf │ ├── ares_parse_aaaa_reply.pdf │ ├── ares_set_servers_ports.pdf │ ├── ares_gethostbyname_file.pdf │ ├── ares_set_socket_callback.pdf │ ├── ares_set_servers_ports_csv.pdf │ ├── ares_set_socket_configure_callback.pdf │ ├── ares_version.c │ ├── windows_port.c │ └── test │ └── configure.ac ├── exosip-5.3.0.tar.gz ├── c-ares-1.12.0.tar.gz ├── libosip2-5.0.0.tar.gz ├── libosip2-5.3.0.tar.gz ├── libexosip2-5.0.0.tar.gz └── main.cpp /5.3.0/exosip-5.3.0/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /c-ares-1.12.0/.libs/libcares.so: -------------------------------------------------------------------------------- 1 | libcares.so.2.2.0 -------------------------------------------------------------------------------- /c-ares-1.12.0/.libs/libcares.so.2: -------------------------------------------------------------------------------- 1 | libcares.so.2.2.0 -------------------------------------------------------------------------------- /libexosip2-5.0.0/src/.libs/libeXosip2.so: -------------------------------------------------------------------------------- 1 | libeXosip2.so.12.0.0 -------------------------------------------------------------------------------- /libexosip2-5.0.0/src/.libs/libeXosip2.so.12: -------------------------------------------------------------------------------- 1 | libeXosip2.so.12.0.0 -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osip2/.libs/libosip2.so: -------------------------------------------------------------------------------- 1 | libosip2.so.12.0.0 -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osip2/.libs/libosip2.so.12: -------------------------------------------------------------------------------- 1 | libosip2.so.12.0.0 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osip2/.libs/libosip2.so: -------------------------------------------------------------------------------- 1 | libosip2.so.15.0.0 -------------------------------------------------------------------------------- /libexosip2-5.0.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Aymeric MOIZARD, 2 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = eXosip2 3 | 4 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = vsnet 3 | 4 | -------------------------------------------------------------------------------- /libosip2-5.0.0/BUGS: -------------------------------------------------------------------------------- 1 | 2 | Yes, some bugs exists... :! 3 | 4 | 5 | -------------------------------------------------------------------------------- /src-win/exosip/AUTHORS: -------------------------------------------------------------------------------- 1 | Aymeric MOIZARD, 2 | -------------------------------------------------------------------------------- /src-win/exosip/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = eXosip2 3 | 4 | -------------------------------------------------------------------------------- /src-win/exosip/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = vsnet 3 | 4 | -------------------------------------------------------------------------------- /src-win/osip/BUGS: -------------------------------------------------------------------------------- 1 | 2 | Yes, some bugs exists... :! 3 | 4 | 5 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Aymeric MOIZARD, 2 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = eXosip2 3 | 4 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = vsnet 3 | 4 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/BUGS: -------------------------------------------------------------------------------- 1 | 2 | Yes, some bugs exists... :! 3 | 4 | 5 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osip2/.libs/libosip2.so.15: -------------------------------------------------------------------------------- 1 | libosip2.so.15.0.0 -------------------------------------------------------------------------------- /c-ares-1.12.0/ares_get_servers_ports.3: -------------------------------------------------------------------------------- 1 | .so man3/ares_get_servers.3 2 | -------------------------------------------------------------------------------- /c-ares-1.12.0/ares_set_servers_ports.3: -------------------------------------------------------------------------------- 1 | .so man3/ares_set_servers.3 2 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = osipparser2 osip2 test 3 | -------------------------------------------------------------------------------- /src-win/c-ares/ares_get_servers_ports.3: -------------------------------------------------------------------------------- 1 | .so man3/ares_get_servers.3 2 | -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_servers_ports.3: -------------------------------------------------------------------------------- 1 | .so man3/ares_set_servers.3 2 | -------------------------------------------------------------------------------- /src-win/osip/src/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = osipparser2 osip2 test 3 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = osipparser2 osip2 test 3 | -------------------------------------------------------------------------------- /c-ares-1.12.0/ares_set_servers_ports_csv.3: -------------------------------------------------------------------------------- 1 | .so man3/ares_set_servers_csv.3 2 | -------------------------------------------------------------------------------- /libosip2-5.0.0/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = osipparser2 osip2 3 | 4 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osipparser2/.libs/libosipparser2.so: -------------------------------------------------------------------------------- 1 | libosipparser2.so.12.0.0 -------------------------------------------------------------------------------- /src-win/osip/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = osipparser2 osip2 3 | 4 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/include/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = osipparser2 osip2 3 | 4 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osipparser2/.libs/libosipparser2.so.12: -------------------------------------------------------------------------------- 1 | libosipparser2.so.12.0.0 -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_servers_ports_csv.3: -------------------------------------------------------------------------------- 1 | .so man3/ares_set_servers_csv.3 2 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/debian/libexosip2.install: -------------------------------------------------------------------------------- 1 | usr/bin 2 | usr/lib/libeXosip*.so.* 3 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osipparser2/.libs/libosipparser2.so: -------------------------------------------------------------------------------- 1 | libosipparser2.so.15.0.0 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osipparser2/.libs/libosipparser2.so.15: -------------------------------------------------------------------------------- 1 | libosipparser2.so.15.0.0 -------------------------------------------------------------------------------- /exosip-5.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/exosip-5.3.0.tar.gz -------------------------------------------------------------------------------- /c-ares-1.12.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/c-ares-1.12.0.tar.gz -------------------------------------------------------------------------------- /libosip2-5.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0.tar.gz -------------------------------------------------------------------------------- /libosip2-5.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.3.0.tar.gz -------------------------------------------------------------------------------- /c-ares-1.12.0/acountry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/c-ares-1.12.0/acountry.c -------------------------------------------------------------------------------- /c-ares-1.12.0/cares.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/c-ares-1.12.0/cares.rc -------------------------------------------------------------------------------- /libexosip2-5.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libexosip2-5.0.0.tar.gz -------------------------------------------------------------------------------- /src-win/c-ares/cares.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/cares.rc -------------------------------------------------------------------------------- /c-ares-1.12.0/recompile.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | 3 | make clean 4 | ./configure && make -j6 && sudo make install -------------------------------------------------------------------------------- /libosip2-5.0.0/help/man/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = osip.1 2 | 3 | EXTRA_DIST = osip.sgml $(man_MANS) 4 | -------------------------------------------------------------------------------- /src-win/c-ares/acountry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/acountry.c -------------------------------------------------------------------------------- /src-win/osip/help/man/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = osip.1 2 | 3 | EXTRA_DIST = osip.sgml $(man_MANS) 4 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/man/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = osip.1 2 | 3 | EXTRA_DIST = osip.sgml $(man_MANS) 4 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/help/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = doxygen 3 | 4 | EXTRA_DIST = \ 5 | INSTALL.linux 6 | 7 | -------------------------------------------------------------------------------- /src-win/c-ares/ares_dup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_dup.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_fds.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_fds.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_init.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_query.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_query.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_send.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_send.pdf -------------------------------------------------------------------------------- /src-win/exosip/help/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = doxygen 3 | 4 | EXTRA_DIST = \ 5 | INSTALL.linux 6 | 7 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/help/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = doxygen 3 | 4 | EXTRA_DIST = \ 5 | INSTALL.linux 6 | 7 | -------------------------------------------------------------------------------- /c-ares-1.12.0/.libs/libcares.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/c-ares-1.12.0/.libs/libcares.a -------------------------------------------------------------------------------- /libosip2-5.0.0/recompile.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | 3 | make clean 4 | ./configure && make -j6 && sudo make install 5 | -------------------------------------------------------------------------------- /src-win/c-ares/ares_cancel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_cancel.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_destroy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_destroy.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_getsock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_getsock.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_mkquery.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_mkquery.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_process.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_process.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_search.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_search.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_timeout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_timeout.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_version.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_free_data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_free_data.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_inet_ntop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_inet_ntop.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_inet_pton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_inet_pton.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_strerror.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_strerror.pdf -------------------------------------------------------------------------------- /src-win/osip/src/test/res/tos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/osip/src/test/res/tos.txt -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/tos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/src/test/res/tos.txt -------------------------------------------------------------------------------- /src-win/c-ares/ares_create_query.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_create_query.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_expand_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_expand_name.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_free_hostent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_free_hostent.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_free_string.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_free_string.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_get_servers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_get_servers.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_getnameinfo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_getnameinfo.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_init_options.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_init_options.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_library_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_library_init.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_save_options.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_save_options.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_servers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_servers.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_sortlist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_sortlist.pdf -------------------------------------------------------------------------------- /src-win/osip/src/test/res/froms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/osip/src/test/res/froms.txt -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip91 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip92 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip93: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip93 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip94: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip94 -------------------------------------------------------------------------------- /c-ares-1.12.0/.libs/libcares.so.2.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/c-ares-1.12.0/.libs/libcares.so.2.2.0 -------------------------------------------------------------------------------- /libexosip2-5.0.0/src/.libs/libeXosip2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libexosip2-5.0.0/src/.libs/libeXosip2.a -------------------------------------------------------------------------------- /libosip2-5.0.0/platform/rpm/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = libosip.spec 3 | 4 | rpm-package: 5 | rpm -ba libosip.spec 6 | 7 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/froms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/src/test/res/froms.txt -------------------------------------------------------------------------------- /src-win/c-ares/ares_destroy_options.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_destroy_options.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_expand_string.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_expand_string.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_gethostbyaddr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_gethostbyaddr.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_gethostbyname.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_gethostbyname.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_library_cleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_library_cleanup.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_a_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_a_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_mx_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_mx_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_ns_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_ns_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_ptr_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_ptr_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_soa_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_soa_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_srv_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_srv_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_txt_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_txt_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_local_dev.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_local_dev.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_local_ip4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_local_ip4.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_local_ip6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_local_ip6.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_servers_csv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_servers_csv.pdf -------------------------------------------------------------------------------- /src-win/exosip/platform/vsnet/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = eXosip.vcxproj libcares.vcxproj \ 3 | eXosip.sln eXosip2.def 4 | -------------------------------------------------------------------------------- /src-win/osip/platform/rpm/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = libosip.spec 3 | 4 | rpm-package: 5 | rpm -ba libosip.spec 6 | 7 | -------------------------------------------------------------------------------- /src-win/osip/platform/rpm/libosip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/osip/platform/rpm/libosip.spec -------------------------------------------------------------------------------- /src-win/osip/src/test/res/contacts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/osip/src/test/res/contacts.txt -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/platform/rpm/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = libosip.spec 3 | 4 | rpm-package: 5 | rpm -ba libosip.spec 6 | 7 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/tos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/tos.txt -------------------------------------------------------------------------------- /libexosip2-5.0.0/platform/vsnet/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = eXosip.vcxproj libcares.vcxproj \ 3 | eXosip.sln eXosip2.def 4 | -------------------------------------------------------------------------------- /libosip2-5.0.0/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = rpm vsnet 3 | 4 | rpm-package: 5 | cd rpm && $(MAKE) rpm-package 6 | 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/platform/rpm/libosip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/platform/rpm/libosip.spec -------------------------------------------------------------------------------- /libosip2-5.0.0/platform/vsnet/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = osip.sln osip2.def osipparser2.def osip2.vcxproj osipparser2.vcxproj 2 | 3 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osip2/.libs/libosip2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/src/osip2/.libs/libosip2.a -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/contacts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/src/test/res/contacts.txt -------------------------------------------------------------------------------- /src-win/c-ares/ares_get_servers_ports.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_get_servers_ports.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_parse_aaaa_reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_parse_aaaa_reply.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_servers_ports.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_servers_ports.pdf -------------------------------------------------------------------------------- /src-win/osip/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = rpm vsnet 3 | 4 | rpm-package: 5 | cd rpm && $(MAKE) rpm-package 6 | 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/platform/vsnet/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = osip.sln osip2.def osipparser2.def osip2.vcxproj osipparser2.vcxproj 2 | 3 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/platform/vsnet/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = eXosip.vcxproj libcares.vcxproj \ 3 | eXosip.sln eXosip2.def 4 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = rpm vsnet 3 | 4 | rpm-package: 5 | cd rpm && $(MAKE) rpm-package 6 | 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/platform/vsnet/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = osip.sln osip2.def osipparser2.def osip2.vcxproj osipparser2.vcxproj 2 | 3 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/froms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/froms.txt -------------------------------------------------------------------------------- /src-win/c-ares/ares_gethostbyname_file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_gethostbyname_file.pdf -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_socket_callback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_socket_callback.pdf -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/debian/libexosip2-dev.install: -------------------------------------------------------------------------------- 1 | usr/lib/libeXosip*.so 2 | usr/lib/libeXosip*.la 3 | usr/lib/libeXosip*.a 4 | usr/include 5 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/platform/rpm/libosip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/platform/rpm/libosip.spec -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/contacts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/contacts.txt -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_servers_ports_csv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_servers_ports_csv.pdf -------------------------------------------------------------------------------- /src-win/exosip/scripts/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = config.guess config.sub install-sh missing mkinstalldirs \ 3 | ltmain.sh ax_pthread.m4 4 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/scripts/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = config.guess config.sub install-sh missing mkinstalldirs \ 3 | ltmain.sh ax_pthread.m4 4 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osip2/.libs/libosip2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/osip2/.libs/libosip2.a -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip-malformed13 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip-malformed14 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip-malformed15 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip-malformed16 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/test/res/sip-malformed17 -------------------------------------------------------------------------------- /libexosip2-5.0.0/scripts/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = config.guess config.sub install-sh missing mkinstalldirs \ 3 | ltmain.sh ax_pthread.m4 4 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/src/.libs/libeXosip2.so.12.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libexosip2-5.0.0/src/.libs/libeXosip2.so.12.0.0 -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osip2/.libs/libosip2.so.12.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/src/osip2/.libs/libosip2.so.12.0.0 -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osipparser2/.libs/libosipparser2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/src/osipparser2/.libs/libosipparser2.a -------------------------------------------------------------------------------- /src-win/c-ares/ares_set_socket_configure_callback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/src-win/c-ares/ares_set_socket_configure_callback.pdf -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osip2/.libs/libosip2.so.15.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/osip2/.libs/libosip2.so.15.0.0 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osipparser2/.libs/libosipparser2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/osipparser2/.libs/libosipparser2.a -------------------------------------------------------------------------------- /libosip2-5.0.0/scripts/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = config.guess config.sub install-sh missing mkinstalldirs \ 3 | ltmain.sh ax_pthread.m4 aclocal-include.m4 4 | 5 | -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() 6 | { 7 | cout << "Hello World!" << endl; 8 | return 0; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /src-win/osip/scripts/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = config.guess config.sub install-sh missing mkinstalldirs \ 3 | ltmain.sh ax_pthread.m4 aclocal-include.m4 4 | 5 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/callids.txt: -------------------------------------------------------------------------------- 1 | # 2 | # valid field 3 | # 4 | qsdlkj@qsdfez 5 | qsoidhaeofih 6 | oiuh87657653@qsdfqf 7 | oiuh876-.!%*_+`'~@oiuh876-.!%*_+`'~ 8 | # -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/scripts/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = config.guess config.sub install-sh missing mkinstalldirs \ 3 | ltmain.sh ax_pthread.m4 aclocal-include.m4 4 | 5 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/osipparser2/.libs/libosipparser2.so.12.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/libosip2-5.0.0/src/osipparser2/.libs/libosipparser2.so.12.0.0 -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/callids.txt: -------------------------------------------------------------------------------- 1 | # 2 | # valid field 3 | # 4 | qsdlkj@qsdfez 5 | qsoidhaeofih 6 | oiuh87657653@qsdfqf 7 | oiuh876-.!%*_+`'~@oiuh876-.!%*_+`'~ 8 | # -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/callids.txt: -------------------------------------------------------------------------------- 1 | # 2 | # valid field 3 | # 4 | qsdlkj@qsdfez 5 | qsoidhaeofih 6 | oiuh87657653@qsdfqf 7 | oiuh876-.!%*_+`'~@oiuh876-.!%*_+`'~ 8 | # -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/osipparser2/.libs/libosipparser2.so.15.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xueqing/exosip/HEAD/5.3.0/libosip2-5.3.0/src/osipparser2/.libs/libosipparser2.so.15.0.0 -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp8: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | s=SDP session 4 | i=SDP with no media (should be accepted...) 5 | c=IN IP4 135.180.130.88 6 | t=0 0 7 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp8: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | s=SDP session 4 | i=SDP with no media (should be accepted...) 5 | c=IN IP4 135.180.130.88 6 | t=0 0 7 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp8: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | s=SDP session 4 | i=SDP with no media (should be accepted...) 5 | c=IN IP4 135.180.130.88 6 | t=0 0 7 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp4: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | c=IN IP4 135.180.130.88 4 | t=0 0 5 | m=audio 492170 RTP/AVP 0 12 6 | m=video 3227 RTP/AVP 31 7 | a=rtpmap:31 LPC 8 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/help/doxygen/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = DoxyFile doxygen.dox.in \ 3 | ht0-initialize.dox \ 4 | ht1-callcontrol.dox \ 5 | ht2-registration.dox 6 | 7 | 8 | all: doxygen.dox 9 | 10 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/help/doxygen/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = DoxyFile doxygen.dox.in \ 3 | ht0-initialize.dox \ 4 | ht1-callcontrol.dox \ 5 | ht2-registration.dox 6 | 7 | 8 | all: doxygen.dox 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp4: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | c=IN IP4 135.180.130.88 4 | t=0 0 5 | m=audio 492170 RTP/AVP 0 12 6 | m=video 3227 RTP/AVP 31 7 | a=rtpmap:31 LPC 8 | -------------------------------------------------------------------------------- /src-win/exosip/help/doxygen/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = DoxyFile doxygen.dox.in \ 3 | ht0-initialize.dox \ 4 | ht1-callcontrol.dox \ 5 | ht2-registration.dox 6 | 7 | 8 | all: doxygen.dox 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp15: -------------------------------------------------------------------------------- 1 | v=0 2 | o=IFAXTERMINAL01 2890844527 2890844527 IN IP4 ift.here.com 3 | s=Session SDP 4 | c=IN IP4 iftmg.here.com 5 | t=0 0 6 | m=audio 3456 RTP/AVP 24 7 | a=rtpmap:24 XXXX/8000 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp4: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | c=IN IP4 135.180.130.88 4 | t=0 0 5 | m=audio 492170 RTP/AVP 0 12 6 | m=video 3227 RTP/AVP 31 7 | a=rtpmap:31 LPC 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/help/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = man doxygen 3 | 4 | EXTRA_DIST = \ 5 | INSTALL.bsd INSTALL.linux INSTALL.vxworks \ 6 | INSTALL.linuxe INSTALL.unix INSTALL.win32 \ 7 | INSTALL.wince 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/help/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = man doxygen 3 | 4 | EXTRA_DIST = \ 5 | INSTALL.bsd INSTALL.linux INSTALL.vxworks \ 6 | INSTALL.linuxe INSTALL.unix INSTALL.win32 \ 7 | INSTALL.wince 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = man doxygen 3 | 4 | EXTRA_DIST = \ 5 | INSTALL.bsd INSTALL.linux INSTALL.vxworks \ 6 | INSTALL.linuxe INSTALL.unix INSTALL.win32 \ 7 | INSTALL.wince 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp15: -------------------------------------------------------------------------------- 1 | v=0 2 | o=IFAXTERMINAL01 2890844527 2890844527 IN IP4 ift.here.com 3 | s=Session SDP 4 | c=IN IP4 iftmg.here.com 5 | t=0 0 6 | m=audio 3456 RTP/AVP 24 7 | a=rtpmap:24 XXXX/8000 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp15: -------------------------------------------------------------------------------- 1 | v=0 2 | o=IFAXTERMINAL01 2890844527 2890844527 IN IP4 ift.here.com 3 | s=Session SDP 4 | c=IN IP4 iftmg.here.com 5 | t=0 0 6 | m=audio 3456 RTP/AVP 24 7 | a=rtpmap:24 XXXX/8000 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp5: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | s=SIP Call 4 | c=IN IP4 135.180.130.88 5 | t=3149328700 0 6 | m=audio 492170 RTP/AVP 0 12 7 | m=video 3227 RTP/AVP 31 8 | a=rtpmap:31 LPC 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp5: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | s=SIP Call 4 | c=IN IP4 135.180.130.88 5 | t=3149328700 0 6 | m=audio 492170 RTP/AVP 0 12 7 | m=video 3227 RTP/AVP 31 8 | a=rtpmap:31 LPC 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp5: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | s=SIP Call 4 | c=IN IP4 135.180.130.88 5 | t=3149328700 0 6 | m=audio 492170 RTP/AVP 0 12 7 | m=video 3227 RTP/AVP 31 8 | a=rtpmap:31 LPC 9 | -------------------------------------------------------------------------------- /c-ares-1.12.0/ares_version.c: -------------------------------------------------------------------------------- 1 | 2 | #include "ares_setup.h" 3 | #include "ares.h" 4 | 5 | const char *ares_version(int *version) 6 | { 7 | if(version) 8 | *version = ARES_VERSION; 9 | 10 | return ARES_VERSION_STR; 11 | } 12 | -------------------------------------------------------------------------------- /src-win/c-ares/ares_version.c: -------------------------------------------------------------------------------- 1 | 2 | #include "ares_setup.h" 3 | #include "ares.h" 4 | 5 | const char *ares_version(int *version) 6 | { 7 | if(version) 8 | *version = ARES_VERSION; 9 | 10 | return ARES_VERSION_STR; 11 | } 12 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/include/eXosip2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | 3 | eXosip_includedir=$(includedir)/eXosip2 4 | 5 | eXosip_include_HEADERS= eXosip.h eX_setup.h \ 6 | eX_register.h eX_call.h eX_options.h \ 7 | eX_subscribe.h eX_publish.h eX_message.h 8 | 9 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/include/eXosip2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | 3 | eXosip_includedir=$(includedir)/eXosip2 4 | 5 | eXosip_include_HEADERS= eXosip.h eX_setup.h \ 6 | eX_register.h eX_call.h eX_options.h \ 7 | eX_subscribe.h eX_publish.h eX_message.h 8 | 9 | -------------------------------------------------------------------------------- /src-win/exosip/include/eXosip2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | 3 | eXosip_includedir=$(includedir)/eXosip2 4 | 5 | eXosip_include_HEADERS= eXosip.h eX_setup.h \ 6 | eX_register.h eX_call.h eX_options.h \ 7 | eX_subscribe.h eX_publish.h eX_message.h 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | include /usr/share/cdbs/1/class/autotools.mk 4 | include /usr/share/cdbs/1/rules/debhelper.mk 5 | 6 | DEB_CONFIGURE_EXTRA_FLAGS := --disable-josua 7 | DEB_DH_INSTALL_SOURCEDIR := debian/tmp 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed18: -------------------------------------------------------------------------------- 1 | expected_error:-5 negative-size-parameter affecting all version <= 5.1.0 2 | SIP/ 400 3 | mime-version:' 4 | Content-Type:multipart/0;boundary=" 5 | 6 | --ng:! 7 | Content-Type:boundary=" 8 | ---- -------------------------------------------------------------------------------- /libosip2-5.0.0/help/INSTALL.bsd: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/help/INSTALL.linux: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/help/INSTALL.unix: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /src-win/osip/help/INSTALL.bsd: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /src-win/osip/help/INSTALL.linux: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /src-win/osip/help/INSTALL.unix: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp7: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | i=no subject line (forbidden but must be accepted) 4 | c=IN IP4 135.180.130.88 5 | t=0 0 6 | m=audio 492170 RTP/AVP 0 12 7 | m=video 3227 RTP/AVP 31 8 | a=rtpmap:31 LPC 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/INSTALL.bsd: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/INSTALL.unix: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /src-win/osip/help/doxygen/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = DoxyFile \ 3 | ht0-initialize.dox ht1-uri.dox \ 4 | ht2-parser.dox ht3-fsm.dox \ 5 | ht4-dialog.dox ht5-portability.dox 6 | 7 | doxygen: 8 | doxygen DoxyFile 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp1: -------------------------------------------------------------------------------- 1 | v=0 2 | o=watson 4858949 4858949 IN IP4 192.1.2.3 3 | s=I'm on my way 4 | c=IN IP4 boston.bell-tel.com 5 | t=3149329600 0 6 | m=audio 5004 RTP/AVP 0 3 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:3 GSM/8000 9 | a=sendonly 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/INSTALL.linux: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | $> tar -xvzf libosip-x.x.x.tar.gz 5 | $> mkdir bld-linux 6 | $> CFLAGS="-I/usr/local/include/" ../configure 7 | $> make 8 | $> make install (as root...) 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/help/doxygen/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = DoxyFile \ 3 | ht0-initialize.dox ht1-uri.dox \ 4 | ht2-parser.dox ht3-fsm.dox \ 5 | ht4-dialog.dox ht5-portability.dox 6 | 7 | doxygen: 8 | doxygen DoxyFile 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp7: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | i=no subject line (forbidden but must be accepted) 4 | c=IN IP4 135.180.130.88 5 | t=0 0 6 | m=audio 492170 RTP/AVP 0 12 7 | m=video 3227 RTP/AVP 31 8 | a=rtpmap:31 LPC 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip35: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/doxygen/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = DoxyFile \ 3 | ht0-initialize.dox ht1-uri.dox \ 4 | ht2-parser.dox ht3-fsm.dox \ 5 | ht4-dialog.dox ht5-portability.dox 6 | 7 | doxygen: 8 | doxygen DoxyFile 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp7: -------------------------------------------------------------------------------- 1 | v=0 2 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 3 | i=no subject line (forbidden but must be accepted) 4 | c=IN IP4 135.180.130.88 5 | t=0 0 6 | m=audio 492170 RTP/AVP 0 12 7 | m=video 3227 RTP/AVP 31 8 | a=rtpmap:31 LPC 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/TODO: -------------------------------------------------------------------------------- 1 | TODO file for oSIP: 2 | 3 | Version 2.x to 3.x: 4 | * rename the MD5 API because it exists in windows and 5 | lead to issue on wince. 6 | * Improve the parser so it won't totally fail when a 7 | few non-important heder are not valid. 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp1: -------------------------------------------------------------------------------- 1 | v=0 2 | o=watson 4858949 4858949 IN IP4 192.1.2.3 3 | s=I'm on my way 4 | c=IN IP4 boston.bell-tel.com 5 | t=3149329600 0 6 | m=audio 5004 RTP/AVP 0 3 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:3 GSM/8000 9 | a=sendonly 10 | -------------------------------------------------------------------------------- /src-win/osip/TODO: -------------------------------------------------------------------------------- 1 | TODO file for oSIP: 2 | 3 | Version 2.x to 3.x: 4 | * rename the MD5 API because it exists in windows and 5 | lead to issue on wince. 6 | * Improve the parser so it won't totally fail when a 7 | few non-important heder are not valid. 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp9: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserA 2890844526 2890844526 IN IP4 here.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 100.101.102.103 6 | t=0 0 7 | m=audio 49172 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip11: -------------------------------------------------------------------------------- 1 | ACK sip:bob@one.example.com SIP/2.0 2 | Via: SIP/2.0/UDP north.east.isi.edu 3 | From: Alice ;tag=1 4 | To: Bob ;tag=3141593 5 | Call-ID: 602214199@mouse.wonderland.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip38: -------------------------------------------------------------------------------- 1 | INVITE sip:bob@example.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: sip:alice@wonderland.com 5 | Call-ID: 27182@caller.com 6 | CSeq: 2 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/TODO: -------------------------------------------------------------------------------- 1 | TODO file for oSIP: 2 | 3 | Version 2.x to 3.x: 4 | * rename the MD5 API because it exists in windows and 5 | lead to issue on wince. 6 | * Improve the parser so it won't totally fail when a 7 | few non-important heder are not valid. 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp1: -------------------------------------------------------------------------------- 1 | v=0 2 | o=watson 4858949 4858949 IN IP4 192.1.2.3 3 | s=I'm on my way 4 | c=IN IP4 boston.bell-tel.com 5 | t=3149329600 0 6 | m=audio 5004 RTP/AVP 0 3 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:3 GSM/8000 9 | a=sendonly 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip35: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp10: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserA 2890844526 2890844526 IN IP4 here.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 100.101.102.103 6 | t=0 0 7 | m=audio 49172 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp11: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserB 2890844527 2890844527 IN IP4 there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 110.111.112.113 6 | t=0 0 7 | m=audio 3456 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip30: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 CANCEL 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip83: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: sip:watson@bell-tel.com 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: tel:+1-972-555-2222 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip35: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/include/osip2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = internal.h doxygen.dox.in 3 | 4 | osip2_includedir=$(includedir)/osip2 5 | 6 | osip2_include_HEADERS= \ 7 | osip.h osip_dialog.h \ 8 | osip_mt.h osip_fifo.h osip_condv.h \ 9 | osip_time.h 10 | 11 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp10: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserA 2890844526 2890844526 IN IP4 here.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 100.101.102.103 6 | t=0 0 7 | m=audio 49172 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp9: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserA 2890844526 2890844526 IN IP4 here.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 100.101.102.103 6 | t=0 0 7 | m=audio 49172 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip11: -------------------------------------------------------------------------------- 1 | ACK sip:bob@one.example.com SIP/2.0 2 | Via: SIP/2.0/UDP north.east.isi.edu 3 | From: Alice ;tag=1 4 | To: Bob ;tag=3141593 5 | Call-ID: 602214199@mouse.wonderland.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip38: -------------------------------------------------------------------------------- 1 | INVITE sip:bob@example.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: sip:alice@wonderland.com 5 | Call-ID: 27182@caller.com 6 | CSeq: 2 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/include/osip2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = internal.h doxygen.dox.in 3 | 4 | osip2_includedir=$(includedir)/osip2 5 | 6 | osip2_include_HEADERS= \ 7 | osip.h osip_dialog.h \ 8 | osip_mt.h osip_fifo.h osip_condv.h \ 9 | osip_time.h 10 | 11 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip39: -------------------------------------------------------------------------------- 1 | INVITE sip:alice@wonderland.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 1 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip41: -------------------------------------------------------------------------------- 1 | INVITE sip:alice@wonderland.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 2 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/include/osip2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = internal.h doxygen.dox.in 3 | 4 | osip2_includedir=$(includedir)/osip2 5 | 6 | osip2_include_HEADERS= \ 7 | osip.h osip_dialog.h \ 8 | osip_mt.h osip_fifo.h osip_condv.h \ 9 | osip_time.h 10 | 11 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp10: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserA 2890844526 2890844526 IN IP4 here.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 100.101.102.103 6 | t=0 0 7 | m=audio 49172 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip11: -------------------------------------------------------------------------------- 1 | ACK sip:bob@one.example.com SIP/2.0 2 | Via: SIP/2.0/UDP north.east.isi.edu 3 | From: Alice ;tag=1 4 | To: Bob ;tag=3141593 5 | Call-ID: 602214199@mouse.wonderland.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip38: -------------------------------------------------------------------------------- 1 | INVITE sip:bob@example.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: sip:alice@wonderland.com 5 | Call-ID: 27182@caller.com 6 | CSeq: 2 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp11: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserB 2890844527 2890844527 IN IP4 there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 110.111.112.113 6 | t=0 0 7 | m=audio 3456 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip30: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 CANCEL 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip83: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: sip:watson@bell-tel.com 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: tel:+1-972-555-2222 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp0: -------------------------------------------------------------------------------- 1 | v=0 2 | o=user1 53655765 2353687637 IN IP4 128.3.4.5 3 | s=Mbone Audio 4 | i=Discussion of Mbone Engineering Issues 5 | e=mbone@somewhere.com 6 | c=IN IP4 224.2.0.1/127 7 | t=3149328700 0 8 | m=audio 3456 RTP/AVP 0 9 | a=rtpmap:0 PCMU/8000 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip43: -------------------------------------------------------------------------------- 1 | OPTIONS sip:bob@example.com SIP/2.0 2 | Via: SIP/2.0/UDP cat.wonderland.com 3 | From: Alice ;tag=1 4 | To: Bob 5 | Call-ID: 6378@cat.wonderland.com 6 | CSeq: 1 OPTIONS 7 | Accept: application/sdp 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip5: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip6: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip72: -------------------------------------------------------------------------------- 1 | OPTIONS sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: "caller" 4 | Call-ID: 1234abcd@10.0.0.1 5 | CSeq: 1 OPTIONS 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Warning: no-LWS-between-display-name-and-< 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp11: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserB 2890844527 2890844527 IN IP4 there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 110.111.112.113 6 | t=0 0 7 | m=audio 3456 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp9: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserA 2890844526 2890844526 IN IP4 here.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 100.101.102.103 6 | t=0 0 7 | m=audio 49172 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip30: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 CANCEL 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip83: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: sip:watson@bell-tel.com 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: tel:+1-972-555-2222 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip39: -------------------------------------------------------------------------------- 1 | INVITE sip:alice@wonderland.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 1 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip41: -------------------------------------------------------------------------------- 1 | INVITE sip:alice@wonderland.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 2 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip1: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 2 REGISTER 7 | Expires: 0 8 | Contact: * 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip13: -------------------------------------------------------------------------------- 1 | SIP/2.0 100 Trying 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip14: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip18: -------------------------------------------------------------------------------- 1 | ACK sip:watson@boston.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 3298420296@kton.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip19: -------------------------------------------------------------------------------- 1 | BYE sip:watson@boston.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. A. Watson ;tag=37462311 5 | Call-ID: 3298420296@kton.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip33: -------------------------------------------------------------------------------- 1 | ACK sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip34: -------------------------------------------------------------------------------- 1 | BYE sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip7: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP pluto.bell-tel.com 3 | From: ;tag=7 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 17320@pluto.bell-tel.com 6 | CSeq: 1 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip73: -------------------------------------------------------------------------------- 1 | OPTIONS sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: "caller" 4 | Call-ID: 1234abcd@10.0.0.1 5 | CSeq: 2 OPTIONS 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Warning: extra-LWS-between-display-name-and-<. 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp0: -------------------------------------------------------------------------------- 1 | v=0 2 | o=user1 53655765 2353687637 IN IP4 128.3.4.5 3 | s=Mbone Audio 4 | i=Discussion of Mbone Engineering Issues 5 | e=mbone@somewhere.com 6 | c=IN IP4 224.2.0.1/127 7 | t=3149328700 0 8 | m=audio 3456 RTP/AVP 0 9 | a=rtpmap:0 PCMU/8000 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip43: -------------------------------------------------------------------------------- 1 | OPTIONS sip:bob@example.com SIP/2.0 2 | Via: SIP/2.0/UDP cat.wonderland.com 3 | From: Alice ;tag=1 4 | To: Bob 5 | Call-ID: 6378@cat.wonderland.com 6 | CSeq: 1 OPTIONS 7 | Accept: application/sdp 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip5: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip6: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip72: -------------------------------------------------------------------------------- 1 | OPTIONS sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: "caller" 4 | Call-ID: 1234abcd@10.0.0.1 5 | CSeq: 1 OPTIONS 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Warning: no-LWS-between-display-name-and-< 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/AUTHORS: -------------------------------------------------------------------------------- 1 | Aymeric MOIZARD, 2 | 3 | Special Thanks to the contributors and mainly to: 4 | 5 | Simon Morlat, 6 | 7 | Thanks to Martin van den Berg 8 | for performance contribution in the parser. 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip29: -------------------------------------------------------------------------------- 1 | CANCEL sip:watson@acm.org SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 CANCEL 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip32: -------------------------------------------------------------------------------- 1 | ACK sip:t.watson@x.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=192137601 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip37: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | From: Charlie ;tag=5 3 | To: Alice ;tag=2332462 4 | Call-ID: 27182@caller.com 5 | Contact: sip:bob@example.com 6 | Expires: Wed, 29 Jul 1998 9:00:00 GMT 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip80: -------------------------------------------------------------------------------- 1 | OPTIONS sip:135.180.130.133 SIP/2.0 2 | Via: SIP/2.0/UDP company.com:5604 3 | From: sip:iuser@company.com 4 | To: sip:user@135.180.130.133 5 | Call-ID: 1804928587@company.com 6 | CSeq: 1 OPTIONS 7 | Expires: 3600 8 | Contact: sip:host.company.com 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip82: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: sip:watson@bell-tel.com 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 2 REGISTER 7 | Contact: sip:+1-972-555-2222@gw1.wcom.com;user=phone 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp0: -------------------------------------------------------------------------------- 1 | v=0 2 | o=user1 53655765 2353687637 IN IP4 128.3.4.5 3 | s=Mbone Audio 4 | i=Discussion of Mbone Engineering Issues 5 | e=mbone@somewhere.com 6 | c=IN IP4 224.2.0.1/127 7 | t=3149328700 0 8 | m=audio 3456 RTP/AVP 0 9 | a=rtpmap:0 PCMU/8000 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip39: -------------------------------------------------------------------------------- 1 | INVITE sip:alice@wonderland.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 1 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip41: -------------------------------------------------------------------------------- 1 | INVITE sip:alice@wonderland.com SIP/2.0 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 2 INVITE 7 | Contact: sip:charlie@h.caller.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip43: -------------------------------------------------------------------------------- 1 | OPTIONS sip:bob@example.com SIP/2.0 2 | Via: SIP/2.0/UDP cat.wonderland.com 3 | From: Alice ;tag=1 4 | To: Bob 5 | Call-ID: 6378@cat.wonderland.com 6 | CSeq: 1 OPTIONS 7 | Accept: application/sdp 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip5: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip6: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 3 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip72: -------------------------------------------------------------------------------- 1 | OPTIONS sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: "caller" 4 | Call-ID: 1234abcd@10.0.0.1 5 | CSeq: 1 OPTIONS 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Warning: no-LWS-between-display-name-and-< 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Aymeric MOIZARD, 2 | 3 | Special Thanks to the contributors and mainly to: 4 | 5 | Simon Morlat, 6 | 7 | Thanks to Martin van den Berg 8 | for performance contribution in the parser. 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip1: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 2 REGISTER 7 | Expires: 0 8 | Contact: * 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip13: -------------------------------------------------------------------------------- 1 | SIP/2.0 100 Trying 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip14: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip18: -------------------------------------------------------------------------------- 1 | ACK sip:watson@boston.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 3298420296@kton.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip19: -------------------------------------------------------------------------------- 1 | BYE sip:watson@boston.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. A. Watson ;tag=37462311 5 | Call-ID: 3298420296@kton.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip32: -------------------------------------------------------------------------------- 1 | ACK sip:t.watson@x.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=192137601 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip33: -------------------------------------------------------------------------------- 1 | ACK sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip34: -------------------------------------------------------------------------------- 1 | BYE sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip7: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP pluto.bell-tel.com 3 | From: ;tag=7 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 17320@pluto.bell-tel.com 6 | CSeq: 1 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip73: -------------------------------------------------------------------------------- 1 | OPTIONS sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: "caller" 4 | Call-ID: 1234abcd@10.0.0.1 5 | CSeq: 2 OPTIONS 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Warning: extra-LWS-between-display-name-and-<. 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip40: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 1 INVITE 7 | Contact: 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Aymeric MOIZARD, 2 | 3 | Special Thanks to the contributors and mainly to: 4 | 5 | Simon Morlat, 6 | 7 | Thanks to Martin van den Berg 8 | for performance contribution in the parser. 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip1: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: ;tag=19 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 2 REGISTER 7 | Expires: 0 8 | Contact: * 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip13: -------------------------------------------------------------------------------- 1 | SIP/2.0 100 Trying 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip14: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip18: -------------------------------------------------------------------------------- 1 | ACK sip:watson@boston.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 3298420296@kton.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip19: -------------------------------------------------------------------------------- 1 | BYE sip:watson@boston.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. A. Watson ;tag=37462311 5 | Call-ID: 3298420296@kton.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip33: -------------------------------------------------------------------------------- 1 | ACK sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip34: -------------------------------------------------------------------------------- 1 | BYE sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=35253448 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 2 BYE 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip7: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP pluto.bell-tel.com 3 | From: ;tag=7 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 17320@pluto.bell-tel.com 6 | CSeq: 1 REGISTER 7 | Contact: sip:tawatson@example.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip73: -------------------------------------------------------------------------------- 1 | OPTIONS sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: "caller" 4 | Call-ID: 1234abcd@10.0.0.1 5 | CSeq: 2 OPTIONS 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Warning: extra-LWS-between-display-name-and-<. 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip29: -------------------------------------------------------------------------------- 1 | CANCEL sip:watson@acm.org SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 CANCEL 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip37: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | From: Charlie ;tag=5 3 | To: Alice ;tag=2332462 4 | Call-ID: 27182@caller.com 5 | Contact: sip:bob@example.com 6 | Expires: Wed, 29 Jul 1998 9:00:00 GMT 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip80: -------------------------------------------------------------------------------- 1 | OPTIONS sip:135.180.130.133 SIP/2.0 2 | Via: SIP/2.0/UDP company.com:5604 3 | From: sip:iuser@company.com 4 | To: sip:user@135.180.130.133 5 | Call-ID: 1804928587@company.com 6 | CSeq: 1 OPTIONS 7 | Expires: 3600 8 | Contact: sip:host.company.com 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip82: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: sip:watson@bell-tel.com 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 2 REGISTER 7 | Contact: sip:+1-972-555-2222@gw1.wcom.com;user=phone 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip15: -------------------------------------------------------------------------------- 1 | SIP/2.0 182 Queued, 2 callers ahead 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip16: -------------------------------------------------------------------------------- 1 | SIP/2.0 182 Queued, 1 caller ahead 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip54: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:j.user@company.com 4 | Call-ID: 0ha0isndaksdj@10.0.2.2 5 | Contact: sip:j.user@host.company.com 6 | CSeq: 8 REGISTER 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Length: 0 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip29: -------------------------------------------------------------------------------- 1 | CANCEL sip:watson@acm.org SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 CANCEL 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip32: -------------------------------------------------------------------------------- 1 | ACK sip:t.watson@x.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=192137601 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip37: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | From: Charlie ;tag=5 3 | To: Alice ;tag=2332462 4 | Call-ID: 27182@caller.com 5 | Contact: sip:bob@example.com 6 | Expires: Wed, 29 Jul 1998 9:00:00 GMT 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip40: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 1 INVITE 7 | Contact: 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip23: -------------------------------------------------------------------------------- 1 | ACK sip:watson@h.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=87454273 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip80: -------------------------------------------------------------------------------- 1 | OPTIONS sip:135.180.130.133 SIP/2.0 2 | Via: SIP/2.0/UDP company.com:5604 3 | From: sip:iuser@company.com 4 | To: sip:user@135.180.130.133 5 | Call-ID: 1804928587@company.com 6 | CSeq: 1 OPTIONS 7 | Expires: 3600 8 | Contact: sip:host.company.com 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip82: -------------------------------------------------------------------------------- 1 | REGISTER sip:bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP saturn.bell-tel.com 3 | From: sip:watson@bell-tel.com 4 | To: sip:watson@bell-tel.com 5 | Call-ID: 70710@saturn.bell-tel.com 6 | CSeq: 2 REGISTER 7 | Contact: sip:+1-972-555-2222@gw1.wcom.com;user=phone 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip15: -------------------------------------------------------------------------------- 1 | SIP/2.0 182 Queued, 2 callers ahead 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip16: -------------------------------------------------------------------------------- 1 | SIP/2.0 182 Queued, 1 caller ahead 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip23: -------------------------------------------------------------------------------- 1 | ACK sip:watson@h.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=87454273 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip54: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:j.user@company.com 4 | Call-ID: 0ha0isndaksdj@10.0.2.2 5 | Contact: sip:j.user@host.company.com 6 | CSeq: 8 REGISTER 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Length: 0 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip20: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@ieee.org SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:a.g.bell@c.bell-tel.com 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip15: -------------------------------------------------------------------------------- 1 | SIP/2.0 182 Queued, 2 callers ahead 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip16: -------------------------------------------------------------------------------- 1 | SIP/2.0 182 Queued, 1 caller ahead 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Content-Length: 0 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip40: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | Via: SIP/2.0/UDP h.caller.com 3 | From: ;tag=5 4 | To: Alice 5 | Call-ID: 27182@caller.com 6 | CSeq: 1 INVITE 7 | Contact: 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip54: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:j.user@company.com 4 | Call-ID: 0ha0isndaksdj@10.0.2.2 5 | Contact: sip:j.user@host.company.com 6 | CSeq: 8 REGISTER 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Length: 0 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp13: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserB 2890844528 2890844528 IN IP4 client.there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-service-examples-03.txt 5 | c=IN IP4 110.111.112.113 6 | t=3034423619 0 7 | m=audio 3456 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | a=sendonly 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip48: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:user@company.com 4 | Contact: sip:user@host.company.com 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 REGISTER 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Expires: Sat, 01 Dec 2040 16:00:00 GMT 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip23: -------------------------------------------------------------------------------- 1 | ACK sip:watson@h.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=87454273 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 ACK 7 | 8 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/tools/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | if COMPILE_TOOLS 3 | bin_PROGRAMS = sip_reg 4 | endif 5 | 6 | AM_CFLAGS = $(EXOSIP_FLAGS) 7 | 8 | sip_reg_SOURCES = sip_reg.c 9 | sip_reg_LDADD = $(top_builddir)/src/libeXosip2.la $(OSIP_LIBS) 10 | 11 | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include $(OSIP_CFLAGS) 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip20: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@ieee.org SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:a.g.bell@c.bell-tel.com 8 | 9 | -------------------------------------------------------------------------------- /src-win/exosip/tools/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | if COMPILE_TOOLS 3 | bin_PROGRAMS = sip_reg 4 | endif 5 | 6 | AM_CFLAGS = $(EXOSIP_FLAGS) 7 | 8 | sip_reg_SOURCES = sip_reg.c 9 | sip_reg_LDADD = $(top_builddir)/src/libeXosip2.la $(OSIP_LIBS) 10 | 11 | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include $(OSIP_CFLAGS) 12 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp6: -------------------------------------------------------------------------------- 1 | v=0 2 | o=bell 53655765 2353687637 IN IP4 128.3.4.5 3 | s=Mr. Watson, come here. 4 | c=IN IP4 kton.bell-tel.com 5 | t=3149328600 0 6 | m=audio 3456 RTP/AVP 0 3 4 5 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:3 GSM/8000 9 | a=rtpmap:4 G723/8000 10 | a=rtpmap:5 DVI4/8000 11 | a=recvonly 12 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip46: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j_user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.1.1.1 5 | Require: newfeature1, newfeature2 6 | Proxy-Require: newfeature3, newfeature4 7 | CSeq: 8 INVITE 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip84: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@ieee.org SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell 4 | To: T. Watson 5 | Call-ID: 31414@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Warning: unquoted-displayname-with-multiple-tokens. 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip20: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@ieee.org SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:a.g.bell@c.bell-tel.com 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp13: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserB 2890844528 2890844528 IN IP4 client.there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-service-examples-03.txt 5 | c=IN IP4 110.111.112.113 6 | t=3034423619 0 7 | m=audio 3456 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | a=sendonly 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip48: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:user@company.com 4 | Contact: sip:user@host.company.com 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 REGISTER 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Expires: Sat, 01 Dec 2040 16:00:00 GMT 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip3: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | t: ;tag=e18a3bd5 3 | f: ;tag=293a8 4 | i: 1960129851@one.ip.com 5 | CSeq: 1 INVITE 6 | v: SIP/2.0/UDP one.ip.com:5060;received=two.ip.org 7 | m: 8 | Server: 3Com ICD 1.0.1.4.0 9 | l: 0 10 | 11 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip31: -------------------------------------------------------------------------------- 1 | SIP/2.0 487 Request Terminated 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp13: -------------------------------------------------------------------------------- 1 | v=0 2 | o=UserB 2890844528 2890844528 IN IP4 client.there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-service-examples-03.txt 5 | c=IN IP4 110.111.112.113 6 | t=3034423619 0 7 | m=audio 3456 RTP/AVP 0 8 | a=rtpmap:0 PCMU/8000 9 | a=sendonly 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip48: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:user@company.com 4 | Contact: sip:user@host.company.com 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 REGISTER 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Expires: Sat, 01 Dec 2040 16:00:00 GMT 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp6: -------------------------------------------------------------------------------- 1 | v=0 2 | o=bell 53655765 2353687637 IN IP4 128.3.4.5 3 | s=Mr. Watson, come here. 4 | c=IN IP4 kton.bell-tel.com 5 | t=3149328600 0 6 | m=audio 3456 RTP/AVP 0 3 4 5 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:3 GSM/8000 9 | a=rtpmap:4 G723/8000 10 | a=rtpmap:5 DVI4/8000 11 | a=recvonly 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip46: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j_user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.1.1.1 5 | Require: newfeature1, newfeature2 6 | Proxy-Require: newfeature3, newfeature4 7 | CSeq: 8 INVITE 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip84: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@ieee.org SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell 4 | To: T. Watson 5 | Call-ID: 31414@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Warning: unquoted-displayname-with-multiple-tokens. 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/libosip2.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libosip2 7 | Description: GNU osip2 core library for sip protocol 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -losipparser2 -losip2 10 | Cflags: -I${includedir} @SIP_FSM_FLAGS@ 11 | 12 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip22: -------------------------------------------------------------------------------- 1 | SIP/2.0 404 Not Found 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson ;tag=87454273 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp6: -------------------------------------------------------------------------------- 1 | v=0 2 | o=bell 53655765 2353687637 IN IP4 128.3.4.5 3 | s=Mr. Watson, come here. 4 | c=IN IP4 kton.bell-tel.com 5 | t=3149328600 0 6 | m=audio 3456 RTP/AVP 0 3 4 5 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:3 GSM/8000 9 | a=rtpmap:4 G723/8000 10 | a=rtpmap:5 DVI4/8000 11 | a=recvonly 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip84: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@ieee.org SIP/2.0 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell 4 | To: T. Watson 5 | Call-ID: 31414@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Warning: unquoted-displayname-with-multiple-tokens. 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/libosip2.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libosip2 7 | Description: GNU osip2 core library for sip protocol 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -losipparser2 -losip2 10 | Cflags: -I${includedir} @SIP_FSM_FLAGS@ 11 | 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip31: -------------------------------------------------------------------------------- 1 | SIP/2.0 487 Request Terminated 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/libosip2.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libosip2 7 | Description: GNU osip2 core library for sip protocol 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -losipparser2 -losip2 10 | Cflags: -I${includedir} @SIP_FSM_FLAGS@ 11 | 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip31: -------------------------------------------------------------------------------- 1 | SIP/2.0 487 Request Terminated 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip46: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j_user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.1.1.1 5 | Require: newfeature1, newfeature2 6 | Proxy-Require: newfeature3, newfeature4 7 | CSeq: 8 INVITE 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | 10 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/recompile.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | 3 | make clean 4 | ./configure && make -j6 && sudo make install 5 | # ./configure SSL_CFLAGS=-I/usr/include SSL_LIBS="-L/lib/x86_64-linux-gnu -lssl -lcrypto" && make -j6 && sudo make install 6 | # ./configure CPPFLAGS=-I/usr/include LDFLAGS=-L/lib/x86_64-linux-gnu && make -j6 && sudo make install 7 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip22: -------------------------------------------------------------------------------- 1 | SIP/2.0 404 Not Found 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson ;tag=87454273 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip3: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | t: ;tag=e18a3bd5 3 | f: ;tag=293a8 4 | i: 1960129851@one.ip.com 5 | CSeq: 1 INVITE 6 | v: SIP/2.0/UDP one.ip.com:5060;received=two.ip.org 7 | m: 8 | Server: 3Com ICD 1.0.1.4.0 9 | l: 0 10 | 11 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | Language: Cpp 3 | BasedOnStyle: Google 4 | AllowShortFunctionsOnASingleLine: None 5 | AllowShortIfStatementsOnASingleLine: false 6 | AllowShortLoopsOnASingleLine: false 7 | SpaceAfterCStyleCast: true 8 | IndentCaseLabels: false 9 | SortIncludes: false 10 | ColumnLimit: 250 11 | 12 | 13 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip22: -------------------------------------------------------------------------------- 1 | SIP/2.0 404 Not Found 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson ;tag=87454273 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip3: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | t: ;tag=e18a3bd5 3 | f: ;tag=293a8 4 | i: 1960129851@one.ip.com 5 | CSeq: 1 INVITE 6 | v: SIP/2.0/UDP one.ip.com:5060;received=two.ip.org 7 | m: 8 | Server: 3Com ICD 1.0.1.4.0 9 | l: 0 10 | 11 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp2: -------------------------------------------------------------------------------- 1 | v=0 2 | o=c 3149329138 3149329165 IN IP4 38.245.76.2 3 | s=Let's talk 4 | c=IN IP4 x.bell-tel.com 5 | b=CT:128 6 | t=3149328630 0 7 | m=audio 3456 RTP/AVP 5 0 7 8 | a=rtpmap:5 DVI4/8000 9 | a=rtpmap:0 PCMU/8000 10 | a=rtpmap:7 LPC/8000 11 | m=video 2232 RTP/AVP 31 12 | a=rtpmap:31 H261/90000 13 | a=sendrecv 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp2: -------------------------------------------------------------------------------- 1 | v=0 2 | o=c 3149329138 3149329165 IN IP4 38.245.76.2 3 | s=Let's talk 4 | c=IN IP4 x.bell-tel.com 5 | b=CT:128 6 | t=3149328630 0 7 | m=audio 3456 RTP/AVP 5 0 7 8 | a=rtpmap:5 DVI4/8000 9 | a=rtpmap:0 PCMU/8000 10 | a=rtpmap:7 LPC/8000 11 | m=video 2232 RTP/AVP 31 12 | a=rtpmap:31 H261/90000 13 | a=sendrecv 14 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip9: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | Via: SIP/2.0/UDP csvax.cs.caltech.edu;branch=7c337f30d7ce.1 3 | ;maddr=239.128.16.254;ttl=16 4 | Via: SIP/2.0/UDP north.east.isi.edu 5 | From: Alice ;tag=1 6 | To: Bob ;tag=3141593 7 | Call-ID: 602214199@mouse.wonderland.com 8 | CSeq: 1 INVITE 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp2: -------------------------------------------------------------------------------- 1 | v=0 2 | o=c 3149329138 3149329165 IN IP4 38.245.76.2 3 | s=Let's talk 4 | c=IN IP4 x.bell-tel.com 5 | b=CT:128 6 | t=3149328630 0 7 | m=audio 3456 RTP/AVP 5 0 7 8 | a=rtpmap:5 DVI4/8000 9 | a=rtpmap:0 PCMU/8000 10 | a=rtpmap:7 LPC/8000 11 | m=video 2232 RTP/AVP 31 12 | a=rtpmap:31 H261/90000 13 | a=sendrecv 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip9: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | Via: SIP/2.0/UDP csvax.cs.caltech.edu;branch=7c337f30d7ce.1 3 | ;maddr=239.128.16.254;ttl=16 4 | Via: SIP/2.0/UDP north.east.isi.edu 5 | From: Alice ;tag=1 6 | To: Bob ;tag=3141593 7 | Call-ID: 602214199@mouse.wonderland.com 8 | CSeq: 1 INVITE 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/include/osipparser2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = headers 3 | 4 | EXTRA_DIST = internal.h 5 | 6 | osipparser2_includedir=$(includedir)/osipparser2 7 | 8 | osipparser2_include_HEADERS=\ 9 | osip_const.h osip_md5.h osip_parser.h osip_uri.h \ 10 | osip_list.h osip_message.h osip_port.h sdp_message.h \ 11 | osip_headers.h osip_body.h 12 | -------------------------------------------------------------------------------- /src-win/osip/include/osipparser2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = headers 3 | 4 | EXTRA_DIST = internal.h 5 | 6 | osipparser2_includedir=$(includedir)/osipparser2 7 | 8 | osipparser2_include_HEADERS=\ 9 | osip_const.h osip_md5.h osip_parser.h osip_uri.h \ 10 | osip_list.h osip_message.h osip_port.h sdp_message.h \ 11 | osip_headers.h osip_body.h 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/include/osipparser2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = headers 3 | 4 | EXTRA_DIST = internal.h 5 | 6 | osipparser2_includedir=$(includedir)/osipparser2 7 | 8 | osipparser2_include_HEADERS=\ 9 | osip_const.h osip_md5.h osip_parser.h osip_uri.h \ 10 | osip_list.h osip_message.h osip_port.h sdp_message.h \ 11 | osip_headers.h osip_body.h 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip9: -------------------------------------------------------------------------------- 1 | SIP/2.0 180 Ringing 2 | Via: SIP/2.0/UDP csvax.cs.caltech.edu;branch=7c337f30d7ce.1 3 | ;maddr=239.128.16.254;ttl=16 4 | Via: SIP/2.0/UDP north.east.isi.edu 5 | From: Alice ;tag=1 6 | To: Bob ;tag=3141593 7 | Call-ID: 602214199@mouse.wonderland.com 8 | CSeq: 1 INVITE 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip24: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@acm.org SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip28: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.4 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | Contact: sip:t.watson@y.bell-tel.com 5 | From: A. Bell ;tag=3 6 | To: T. Watson ;tag=35253448 7 | Call-ID: 31415@c.bell-tel.com 8 | CSeq: 1 INVITE 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip21: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@h.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip26: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.4 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip27: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.3 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson ;tag=192137601 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:t.watson@x.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip24: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@acm.org SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip25: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@x.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.3 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip24: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@acm.org SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.2 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip27: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.3 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson ;tag=192137601 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:t.watson@x.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip28: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.4 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | Contact: sip:t.watson@y.bell-tel.com 5 | From: A. Bell ;tag=3 6 | To: T. Watson ;tag=35253448 7 | Call-ID: 31415@c.bell-tel.com 8 | CSeq: 1 INVITE 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip10: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP csvax.cs.caltech.edu;branch=7c337f30d7ce.1 3 | ;maddr=239.128.16.254;ttl=16 4 | Via: SIP/2.0/UDP north.east.isi.edu 5 | From: Alice ;tag=1 6 | To: Bob ;tag=3141593 7 | Call-ID: 602214199@mouse.wonderland.com 8 | CSeq: 1 INVITE 9 | Contact: 10 | 11 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip27: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.3 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson ;tag=192137601 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:t.watson@x.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip28: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.4 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | Contact: sip:t.watson@y.bell-tel.com 5 | From: A. Bell ;tag=3 6 | To: T. Watson ;tag=35253448 7 | Call-ID: 31415@c.bell-tel.com 8 | CSeq: 1 INVITE 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip89: -------------------------------------------------------------------------------- 1 | MESSAGE sip:philou@cdf2004.org SIP/2.0 2 | test: "{\"test1\":{\"foo1\":[\"ba,r11\"],\"foo2\":[\"bar21\",\"bar22\"]}}" 3 | Via: SIP/2.0/UDP cdf2004.org 4 | From: ;tag=19 5 | To: sip:philou@cdf2004.org 6 | Call-ID: 70710@cdf2004.org 7 | CSeq: 2 MESSAGE 8 | Mime-Version: 1.0 9 | Subject: championnat 10 | Content-Length: 0 11 | 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip21: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@h.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip25: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@x.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.3 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip26: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.4 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp3: -------------------------------------------------------------------------------- 1 | v=0 2 | o=alice 3149329138 3149329165 IN IP4 24.124.37.3 3 | s=Security problems 4 | c=IN IP4 24.124.37.3 5 | t=3149328650 0 6 | m=audio 0 RTP/AVP 0 1 3 99 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:1 1016/8000 9 | a=rtpmap:3 GSM/8000 10 | a=rtpmap:99 SX7300/8000 11 | m=video 0 RTP/AVP 31 34 12 | a=rtpmap:31 H261/90000 13 | a=rtpmap:34 H263/90000 14 | a=inactive 15 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip21: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@h.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.1 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip25: -------------------------------------------------------------------------------- 1 | INVITE sip:t.watson@x.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.3 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip26: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@y.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.ieee.org ;branch=3d8a50dbf5a28d.4 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell ;tag=3 5 | To: T. Watson 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Contact: sip:a.g.bell@c.bell-tel.com 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip10: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP csvax.cs.caltech.edu;branch=7c337f30d7ce.1 3 | ;maddr=239.128.16.254;ttl=16 4 | Via: SIP/2.0/UDP north.east.isi.edu 5 | From: Alice ;tag=1 6 | To: Bob ;tag=3141593 7 | Call-ID: 602214199@mouse.wonderland.com 8 | CSeq: 1 INVITE 9 | Contact: 10 | 11 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip36: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=72538263 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:watson@h.bell-tel.com, 8 | sip:watson@acm.org, sip:t.watson@x.bell-tel.com, 9 | sip:watson@y.bell-tel.com 10 | 11 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip10: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP csvax.cs.caltech.edu;branch=7c337f30d7ce.1 3 | ;maddr=239.128.16.254;ttl=16 4 | Via: SIP/2.0/UDP north.east.isi.edu 5 | From: Alice ;tag=1 6 | To: Bob ;tag=3141593 7 | Call-ID: 602214199@mouse.wonderland.com 8 | CSeq: 1 INVITE 9 | Contact: 10 | 11 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp3: -------------------------------------------------------------------------------- 1 | v=0 2 | o=alice 3149329138 3149329165 IN IP4 24.124.37.3 3 | s=Security problems 4 | c=IN IP4 24.124.37.3 5 | t=3149328650 0 6 | m=audio 0 RTP/AVP 0 1 3 99 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:1 1016/8000 9 | a=rtpmap:3 GSM/8000 10 | a=rtpmap:99 SX7300/8000 11 | m=video 0 RTP/AVP 31 34 12 | a=rtpmap:31 H261/90000 13 | a=rtpmap:34 H263/90000 14 | a=inactive 15 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed7: -------------------------------------------------------------------------------- 1 | expected_error:0 semicolon-separated-parameter-in-the-user-part (user is understood as a domain name). 2 | INVITE sip:user;par=u%40h.com@company.com SIP/2.0 3 | To: sip:j_user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.1.1.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Warning: semicolon-separated-parameter-in-the-user-part. 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip77: -------------------------------------------------------------------------------- 1 | expected_error:0 INVITE with Unknown (Higher) Protocol Version in Start Line 2 | INVITE sip:t.watson@ieee.org SIP/7.0 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell 5 | To: T. Watson 6 | Call-ID: 31417@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Warning: Unknown-higher-protocol-version-in-start-line. 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp3: -------------------------------------------------------------------------------- 1 | v=0 2 | o=alice 3149329138 3149329165 IN IP4 24.124.37.3 3 | s=Security problems 4 | c=IN IP4 24.124.37.3 5 | t=3149328650 0 6 | m=audio 0 RTP/AVP 0 1 3 99 7 | a=rtpmap:0 PCMU/8000 8 | a=rtpmap:1 1016/8000 9 | a=rtpmap:3 GSM/8000 10 | a=rtpmap:99 SX7300/8000 11 | m=video 0 RTP/AVP 31 34 12 | a=rtpmap:31 H261/90000 13 | a=rtpmap:34 H263/90000 14 | a=inactive 15 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed1: -------------------------------------------------------------------------------- 1 | expected_error:0 2 | INVITE sip:user@company.com SIP/2.0 3 | CSeq: 0 INVITE 4 | Via: SIP/2.0/UDP 135.180.130.133 5 | Content-Type: application/sdp 6 | Warning: illegal missing mandatory headers. 7 | 8 | v=0 9 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 10 | c=IN IP4 135.180.130.88 11 | m=audio 492170 RTP/AVP 0 12 12 | m=video 3227 RTP/AVP 31 13 | a=rtpmap:31 LPC 14 | 15 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip53: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:j.user@company.com 4 | Call-ID: 0ha0isndaksdj@10.0.1.1 5 | CSeq: 8 REGISTER 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Authorization: Digest username="j.user" realm="My Cool Domain" nonce="1234567890abcdef1234567890abcdef" response="1234567890abcdef1234567890abcdef" digest="1234567890abcdef1234567890abcdef" 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/help/INSTALL.linuxe: -------------------------------------------------------------------------------- 1 | Install process for linux embedded 2 | ---------------------------------- 3 | 4 | The latest osip release tested on embedded linux was 3.0.1 5 | The target was an arm processor. 6 | 7 | 8 | $> ./configure --build=i686-pc-linux-gnu \ 9 | --host=arm-linux \ 10 | --target=arm-linux \ 11 | --prefix=/arm/usr/local 12 | 13 | $> make 14 | 15 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed7: -------------------------------------------------------------------------------- 1 | expected_error:0 semicolon-separated-parameter-in-the-user-part (user is understood as a domain name). 2 | INVITE sip:user;par=u%40h.com@company.com SIP/2.0 3 | To: sip:j_user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.1.1.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Warning: semicolon-separated-parameter-in-the-user-part. 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip36: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=72538263 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:watson@h.bell-tel.com, 8 | sip:watson@acm.org, sip:t.watson@x.bell-tel.com, 9 | sip:watson@y.bell-tel.com 10 | 11 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip77: -------------------------------------------------------------------------------- 1 | expected_error:0 INVITE with Unknown (Higher) Protocol Version in Start Line 2 | INVITE sip:t.watson@ieee.org SIP/7.0 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell 5 | To: T. Watson 6 | Call-ID: 31417@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Warning: Unknown-higher-protocol-version-in-start-line. 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/help/INSTALL.linuxe: -------------------------------------------------------------------------------- 1 | Install process for linux embedded 2 | ---------------------------------- 3 | 4 | The latest osip release tested on embedded linux was 3.0.1 5 | The target was an arm processor. 6 | 7 | 8 | $> ./configure --build=i686-pc-linux-gnu \ 9 | --host=arm-linux \ 10 | --target=arm-linux \ 11 | --prefix=/arm/usr/local 12 | 13 | $> make 14 | 15 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip49: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j_user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | Accept: text/newformat 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/INSTALL.linuxe: -------------------------------------------------------------------------------- 1 | Install process for linux embedded 2 | ---------------------------------- 3 | 4 | The latest osip release tested on embedded linux was 3.0.1 5 | The target was an arm processor. 6 | 7 | 8 | $> ./configure --build=i686-pc-linux-gnu \ 9 | --host=arm-linux \ 10 | --target=arm-linux \ 11 | --prefix=/arm/usr/local 12 | 13 | $> make 14 | 15 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed7: -------------------------------------------------------------------------------- 1 | expected_error:0 semicolon-separated-parameter-in-the-user-part (user is understood as a domain name). 2 | INVITE sip:user;par=u%40h.com@company.com SIP/2.0 3 | To: sip:j_user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.1.1.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Warning: semicolon-separated-parameter-in-the-user-part. 9 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip36: -------------------------------------------------------------------------------- 1 | SIP/2.0 302 Moved temporarily 2 | Via: SIP/2.0/UDP c.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson ;tag=72538263 5 | Call-ID: 31415@c.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:watson@h.bell-tel.com, 8 | sip:watson@acm.org, sip:t.watson@x.bell-tel.com, 9 | sip:watson@y.bell-tel.com 10 | 11 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip77: -------------------------------------------------------------------------------- 1 | expected_error:0 INVITE with Unknown (Higher) Protocol Version in Start Line 2 | INVITE sip:t.watson@ieee.org SIP/7.0 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: A. Bell 5 | To: T. Watson 6 | Call-ID: 31417@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Warning: Unknown-higher-protocol-version-in-start-line. 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip53: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:j.user@company.com 4 | Call-ID: 0ha0isndaksdj@10.0.1.1 5 | CSeq: 8 REGISTER 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Authorization: Digest username="j.user" realm="My Cool Domain" nonce="1234567890abcdef1234567890abcdef" response="1234567890abcdef1234567890abcdef" digest="1234567890abcdef1234567890abcdef" 8 | 9 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip47: -------------------------------------------------------------------------------- 1 | INVITE name:John_Smith SIP/2.0 2 | To: isbn:2983792873 3 | From: http://www.cs.columbia.edu 4 | Call-ID: 0ha0isndaksdj@10.1.2.3 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip53: -------------------------------------------------------------------------------- 1 | REGISTER sip:company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:j.user@company.com 4 | Call-ID: 0ha0isndaksdj@10.0.1.1 5 | CSeq: 8 REGISTER 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Authorization: Digest username="j.user" realm="My Cool Domain" nonce="1234567890abcdef1234567890abcdef" response="1234567890abcdef1234567890abcdef" digest="1234567890abcdef1234567890abcdef" 8 | 9 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed1: -------------------------------------------------------------------------------- 1 | expected_error:0 2 | INVITE sip:user@company.com SIP/2.0 3 | CSeq: 0 INVITE 4 | Via: SIP/2.0/UDP 135.180.130.133 5 | Content-Type: application/sdp 6 | Warning: illegal missing mandatory headers. 7 | 8 | v=0 9 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 10 | c=IN IP4 135.180.130.88 11 | m=audio 492170 RTP/AVP 0 12 12 | m=video 3227 RTP/AVP 31 13 | a=rtpmap:31 LPC 14 | 15 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed11: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-Unquoted-display-name-with-non-token-chars. 2 | INVITE sip:t.watson@ieee.org SIP/2.0 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: Bell, Alexander 5 | To: Watson, Thomas 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Warning: illegal-Unquoted-display-name-with-non-token-chars. 9 | 10 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip62: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | From: BigGuy 4 | To: LittleGuy 5 | Call-ID: 12345600@here.com 6 | CSeq: 1 INVITE 7 | Proxy-Authenticate: Digest realm="WorldCom SIP", 8 | domain="sip:ss1.wcom.com", nonce="wf84f1cczx41ae6cbeaea9ce88d359", 9 | opaque="", stale=FALSE, algorithm=MD5 10 | Content-Length: 0 11 | 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed1: -------------------------------------------------------------------------------- 1 | expected_error:0 2 | INVITE sip:user@company.com SIP/2.0 3 | CSeq: 0 INVITE 4 | Via: SIP/2.0/UDP 135.180.130.133 5 | Content-Type: application/sdp 6 | Warning: illegal missing mandatory headers. 7 | 8 | v=0 9 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 10 | c=IN IP4 135.180.130.88 11 | m=audio 492170 RTP/AVP 0 12 12 | m=video 3227 RTP/AVP 31 13 | a=rtpmap:31 LPC 14 | 15 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed11: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-Unquoted-display-name-with-non-token-chars. 2 | INVITE sip:t.watson@ieee.org SIP/2.0 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: Bell, Alexander 5 | To: Watson, Thomas 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Warning: illegal-Unquoted-display-name-with-non-token-chars. 9 | 10 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip47: -------------------------------------------------------------------------------- 1 | INVITE name:John_Smith SIP/2.0 2 | To: isbn:2983792873 3 | From: http://www.cs.columbia.edu 4 | Call-ID: 0ha0isndaksdj@10.1.2.3 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip49: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j_user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | Accept: text/newformat 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip65: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | From: BigGuy 4 | To: LittleGuy 5 | Call-ID: 12345600@here.com 6 | CSeq: 1 INVITE 7 | Proxy-Authenticate: Digest realm="MCI WorldCom SIP", 8 | domain="sip:ss1.wcom.com", nonce="f84f1cec41e6cbe5aea9c8e88d359", 9 | opaque="", stale=FALSE, algorithm=MD5 10 | Content-Length: 0 11 | 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed11: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-Unquoted-display-name-with-non-token-chars. 2 | INVITE sip:t.watson@ieee.org SIP/2.0 3 | Via: SIP/2.0/UDP c.bell-tel.com 4 | From: Bell, Alexander 5 | To: Watson, Thomas 6 | Call-ID: 31415@c.bell-tel.com 7 | CSeq: 1 INVITE 8 | Warning: illegal-Unquoted-display-name-with-non-token-chars. 9 | 10 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip47: -------------------------------------------------------------------------------- 1 | INVITE name:John_Smith SIP/2.0 2 | To: isbn:2983792873 3 | From: http://www.cs.columbia.edu 4 | Call-ID: 0ha0isndaksdj@10.1.2.3 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip49: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j_user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | Accept: text/newformat 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip51: -------------------------------------------------------------------------------- 1 | NEWMETHOD sip:user@comapny.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | CSeq: 8 NEWMETHOD 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip52: -------------------------------------------------------------------------------- 1 | NEWMETHOD sip:user@comapny.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.1.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip55: -------------------------------------------------------------------------------- 1 | INVITE sip:joe@company.com SIP/2.0 2 | To: sip:joe@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isnda977644900765@10.0.0.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/urls-3.txt: -------------------------------------------------------------------------------- 1 | sip:antisip@sip.antisip.com?xx&xx=yyy 2 | sip:antisip@sip.antisip.com;; 3 | sip:antisip@sip.antisip.com;=; 4 | sip:antisip@sip.antisip.com;a=; 5 | sip:antisip@sip.antisip.com;=b; 6 | sip:antisip@sip.antisip.com;a=b; 7 | sip:antisip@sip.antisip.com;;a 8 | sip:antisip@sip.antisip.com;=;= 9 | sip:antisip@sip.antisip.com;a=;a= 10 | sip:antisip@sip.antisip.com;=b;=b 11 | sip:antisip@sip.antisip.com;a=b;a=b 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip62: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | From: BigGuy 4 | To: LittleGuy 5 | Call-ID: 12345600@here.com 6 | CSeq: 1 INVITE 7 | Proxy-Authenticate: Digest realm="WorldCom SIP", 8 | domain="sip:ss1.wcom.com", nonce="wf84f1cczx41ae6cbeaea9ce88d359", 9 | opaque="", stale=FALSE, algorithm=MD5 10 | Content-Length: 0 11 | 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip65: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | From: BigGuy 4 | To: LittleGuy 5 | Call-ID: 12345600@here.com 6 | CSeq: 1 INVITE 7 | Proxy-Authenticate: Digest realm="MCI WorldCom SIP", 8 | domain="sip:ss1.wcom.com", nonce="f84f1cec41e6cbe5aea9c8e88d359", 9 | opaque="", stale=FALSE, algorithm=MD5 10 | Content-Length: 0 11 | 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip62: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | From: BigGuy 4 | To: LittleGuy 5 | Call-ID: 12345600@here.com 6 | CSeq: 1 INVITE 7 | Proxy-Authenticate: Digest realm="WorldCom SIP", 8 | domain="sip:ss1.wcom.com", nonce="wf84f1cczx41ae6cbeaea9ce88d359", 9 | opaque="", stale=FALSE, algorithm=MD5 10 | Content-Length: 0 11 | 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip65: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | From: BigGuy 4 | To: LittleGuy 5 | Call-ID: 12345600@here.com 6 | CSeq: 1 INVITE 7 | Proxy-Authenticate: Digest realm="MCI WorldCom SIP", 8 | domain="sip:ss1.wcom.com", nonce="f84f1cec41e6cbe5aea9c8e88d359", 9 | opaque="", stale=FALSE, algorithm=MD5 10 | Content-Length: 0 11 | 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip52: -------------------------------------------------------------------------------- 1 | NEWMETHOD sip:user@comapny.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.1.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip55: -------------------------------------------------------------------------------- 1 | INVITE sip:joe@company.com SIP/2.0 2 | To: sip:joe@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isnda977644900765@10.0.0.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip52: -------------------------------------------------------------------------------- 1 | NEWMETHOD sip:user@comapny.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.1.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip51: -------------------------------------------------------------------------------- 1 | NEWMETHOD sip:user@comapny.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | CSeq: 8 NEWMETHOD 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip78: -------------------------------------------------------------------------------- 1 | expected_error:0 REGISTER with a Escaped Header in a Illegal SIP URL of a Contact 2 | REGISTER sip:company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:user@company.com 5 | Contact: sip:user@host.company.com 6 | Call-ID: k345asrl3fdbv@10.0.0.1 7 | CSeq: 1 REGISTER 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | Contact: sip:user@example.com?Route=%3Csip:sip.example.com%3E 10 | Warning: illegal-sip-url-with-escaped-chars 11 | 12 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip86: -------------------------------------------------------------------------------- 1 | expected_error:0 REGISTER with a Escaped Header in a Legal SIP URL of a Contact 2 | REGISTER sip:company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:user@company.com 5 | Contact: sip:user@host.company.com 6 | Call-ID: k345asrl3fdbv@10.0.0.1 7 | CSeq: 1 REGISTER 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | Contact: 10 | Warning: Escaped Header in a legal sip url. 11 | 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip51: -------------------------------------------------------------------------------- 1 | NEWMETHOD sip:user@comapny.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | CSeq: 8 NEWMETHOD 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip55: -------------------------------------------------------------------------------- 1 | INVITE sip:joe@company.com SIP/2.0 2 | To: sip:joe@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isnda977644900765@10.0.0.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 11 | c=IN IP4 135.180.130.88 12 | m=audio 492170 RTP/AVP 0 12 13 | m=video 3227 RTP/AVP 31 14 | a=rtpmap:31 LPC 15 | 16 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/help/INSTALL.linux: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | 1: compile/install libosip first. 5 | 6 | $> tar -xvzf libosip2-x.x.x.tar.gz 7 | $> CFLAGS="-I/usr/local/include/" ../configure 8 | $> make 9 | $> make install (as root...) 10 | 11 | 2: compile/install eXosip 12 | 13 | $> tar -xvzf libeXosip2-x.x.x.tar.gz 14 | $> CFLAGS="-I/usr/local/include/" ../configure 15 | $> make 16 | $> make install (as root...) 17 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/help/INSTALL.linux: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | 1: compile/install libosip first. 5 | 6 | $> tar -xvzf libosip2-x.x.x.tar.gz 7 | $> CFLAGS="-I/usr/local/include/" ../configure 8 | $> make 9 | $> make install (as root...) 10 | 11 | 2: compile/install eXosip 12 | 13 | $> tar -xvzf libeXosip2-x.x.x.tar.gz 14 | $> CFLAGS="-I/usr/local/include/" ../configure 15 | $> make 16 | $> make install (as root...) 17 | -------------------------------------------------------------------------------- /src-win/exosip/help/INSTALL.linux: -------------------------------------------------------------------------------- 1 | 2 | Common Install process for linux/UNIX. 3 | 4 | 1: compile/install libosip first. 5 | 6 | $> tar -xvzf libosip2-x.x.x.tar.gz 7 | $> CFLAGS="-I/usr/local/include/" ../configure 8 | $> make 9 | $> make install (as root...) 10 | 11 | 2: compile/install eXosip 12 | 13 | $> tar -xvzf libeXosip2-x.x.x.tar.gz 14 | $> CFLAGS="-I/usr/local/include/" ../configure 15 | $> make 16 | $> make install (as root...) 17 | -------------------------------------------------------------------------------- /src-win/osip/scripts/aclocal-include.m4: -------------------------------------------------------------------------------- 1 | # aclocal-include.m4 2 | # 3 | # This macro adds the name macrodir to the set of directories 4 | # that `aclocal' searches for macros. 5 | 6 | # serial 1 7 | 8 | dnl AM_ACLOCAL_INCLUDE(macrodir) 9 | AC_DEFUN([AM_ACLOCAL_INCLUDE], 10 | [ 11 | AM_CONDITIONAL(INSIDE_GNOME_COMMON, false) 12 | 13 | test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" 14 | 15 | for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done 16 | ]) 17 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip58: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | Via: SIP/2.0/UDP 135.180.130.133 3 | CSeq: 0 INVITE 4 | Call-ID: 98asdh@10.1.1.2 5 | Expires: Thu, 44 Dec 19999 16:00:00 EDT 6 | From: sip:caller@university.edu 7 | To: sip:user@company.com 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 135.180.130.88 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | 17 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/scripts/aclocal-include.m4: -------------------------------------------------------------------------------- 1 | # aclocal-include.m4 2 | # 3 | # This macro adds the name macrodir to the set of directories 4 | # that `aclocal' searches for macros. 5 | 6 | # serial 1 7 | 8 | dnl AM_ACLOCAL_INCLUDE(macrodir) 9 | AC_DEFUN([AM_ACLOCAL_INCLUDE], 10 | [ 11 | AM_CONDITIONAL(INSIDE_GNOME_COMMON, false) 12 | 13 | test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" 14 | 15 | for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done 16 | ]) 17 | -------------------------------------------------------------------------------- /libosip2-5.0.0/scripts/aclocal-include.m4: -------------------------------------------------------------------------------- 1 | # aclocal-include.m4 2 | # 3 | # This macro adds the name macrodir to the set of directories 4 | # that `aclocal' searches for macros. 5 | 6 | # serial 1 7 | 8 | dnl AM_ACLOCAL_INCLUDE(macrodir) 9 | AC_DEFUN([AM_ACLOCAL_INCLUDE], 10 | [ 11 | AM_CONDITIONAL(INSIDE_GNOME_COMMON, false) 12 | 13 | test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" 14 | 15 | for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done 16 | ]) 17 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip78: -------------------------------------------------------------------------------- 1 | expected_error:0 REGISTER with a Escaped Header in a Illegal SIP URL of a Contact 2 | REGISTER sip:company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:user@company.com 5 | Contact: sip:user@host.company.com 6 | Call-ID: k345asrl3fdbv@10.0.0.1 7 | CSeq: 1 REGISTER 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | Contact: sip:user@example.com?Route=%3Csip:sip.example.com%3E 10 | Warning: illegal-sip-url-with-escaped-chars 11 | 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip86: -------------------------------------------------------------------------------- 1 | expected_error:0 REGISTER with a Escaped Header in a Legal SIP URL of a Contact 2 | REGISTER sip:company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:user@company.com 5 | Contact: sip:user@host.company.com 6 | Call-ID: k345asrl3fdbv@10.0.0.1 7 | CSeq: 1 REGISTER 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | Contact: 10 | Warning: Escaped Header in a legal sip url. 11 | 12 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip59: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP 135.180.130.57;branch=0 3 | Via: SIP/2.0/UDP 255.255.255.255;branch=0 4 | Call-ID: 0384840201@10.1.1.1 5 | CSeq: 0 INVITE 6 | From: sip:user@company.com 7 | To: sip:user@university.edu;tag=2229 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 224.2.17.12/127 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | 17 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/scripts/aclocal-include.m4: -------------------------------------------------------------------------------- 1 | # aclocal-include.m4 2 | # 3 | # This macro adds the name macrodir to the set of directories 4 | # that `aclocal' searches for macros. 5 | 6 | # serial 1 7 | 8 | dnl AM_ACLOCAL_INCLUDE(macrodir) 9 | AC_DEFUN([AM_ACLOCAL_INCLUDE], 10 | [ 11 | AM_CONDITIONAL(INSIDE_GNOME_COMMON, false) 12 | 13 | test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" 14 | 15 | for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done 16 | ]) 17 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip78: -------------------------------------------------------------------------------- 1 | expected_error:0 REGISTER with a Escaped Header in a Illegal SIP URL of a Contact 2 | REGISTER sip:company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:user@company.com 5 | Contact: sip:user@host.company.com 6 | Call-ID: k345asrl3fdbv@10.0.0.1 7 | CSeq: 1 REGISTER 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | Contact: sip:user@example.com?Route=%3Csip:sip.example.com%3E 10 | Warning: illegal-sip-url-with-escaped-chars 11 | 12 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip86: -------------------------------------------------------------------------------- 1 | expected_error:0 REGISTER with a Escaped Header in a Legal SIP URL of a Contact 2 | REGISTER sip:company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:user@company.com 5 | Contact: sip:user@host.company.com 6 | Call-ID: k345asrl3fdbv@10.0.0.1 7 | CSeq: 1 REGISTER 8 | Via: SIP/2.0/UDP 135.180.130.133 9 | Contact: 10 | Warning: Escaped Header in a legal sip url. 11 | 12 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip4: -------------------------------------------------------------------------------- 1 | SIP/2.0 401 Unauthorized 2 | Via: SIP/2.0/UDP 80.11.86.76:5060 3 | To:sip:amoizard@antisip.com 4 | From: ;tag=75bd3 5 | Call-ID: 975799879@80.11.86.76 6 | CSeq: 1 REGISTER 7 | Supported: com.salut.amoi,100rel 8 | Content-Length: 0 9 | Server: IMS1.0 10 | WWW-Authenticate: Digest realm="This is test realm",nonce="MTAwODc4ODQzNDIzMWI2MDY0OTBlNGJjMjJkZWNiMWRmOGUwNmIwMDVlMjZl",stale=false,algorithm=MD5,qop="auth,auth-int" 11 | 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip58: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | Via: SIP/2.0/UDP 135.180.130.133 3 | CSeq: 0 INVITE 4 | Call-ID: 98asdh@10.1.1.2 5 | Expires: Thu, 44 Dec 19999 16:00:00 EDT 6 | From: sip:caller@university.edu 7 | To: sip:user@company.com 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 135.180.130.88 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | 17 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip59: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP 135.180.130.57;branch=0 3 | Via: SIP/2.0/UDP 255.255.255.255;branch=0 4 | Call-ID: 0384840201@10.1.1.1 5 | CSeq: 0 INVITE 6 | From: sip:user@company.com 7 | To: sip:user@university.edu;tag=2229 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 224.2.17.12/127 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | 17 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip58: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | Via: SIP/2.0/UDP 135.180.130.133 3 | CSeq: 0 INVITE 4 | Call-ID: 98asdh@10.1.1.2 5 | Expires: Thu, 44 Dec 19999 16:00:00 EDT 6 | From: sip:caller@university.edu 7 | To: sip:user@company.com 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 135.180.130.88 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | 17 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip59: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP 135.180.130.57;branch=0 3 | Via: SIP/2.0/UDP 255.255.255.255;branch=0 4 | Call-ID: 0384840201@10.1.1.1 5 | CSeq: 0 INVITE 6 | From: sip:user@company.com 7 | To: sip:user@university.edu;tag=2229 8 | Content-Type: application/sdp 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 224.2.17.12/127 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | 17 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip4: -------------------------------------------------------------------------------- 1 | SIP/2.0 401 Unauthorized 2 | Via: SIP/2.0/UDP 80.11.86.76:5060 3 | To:sip:amoizard@antisip.com 4 | From: ;tag=75bd3 5 | Call-ID: 975799879@80.11.86.76 6 | CSeq: 1 REGISTER 7 | Supported: com.salut.amoi,100rel 8 | Content-Length: 0 9 | Server: IMS1.0 10 | WWW-Authenticate: Digest realm="This is test realm",nonce="MTAwODc4ODQzNDIzMWI2MDY0OTBlNGJjMjJkZWNiMWRmOGUwNmIwMDVlMjZl",stale=false,algorithm=MD5,qop="auth,auth-int" 11 | 12 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip57: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | Record-Route: 4 | From: BigGuy 5 | To: LittleGuy ;tag=2341d 6 | Call-ID: 12345600@here.com 7 | CSeq: 2 INVITE 8 | Proxy-Authenticate: Digest realm="MCI SIP", 9 | domain="sip:ss2.mci.com", nonce="c1e22c41ae6cbe5ae983a9c8e88d359", 10 | opaque="", stale=FALSE, algorithm=MD5 11 | Content-Length: 0 12 | 13 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip4: -------------------------------------------------------------------------------- 1 | SIP/2.0 401 Unauthorized 2 | Via: SIP/2.0/UDP 80.11.86.76:5060 3 | To:sip:amoizard@antisip.com 4 | From: ;tag=75bd3 5 | Call-ID: 975799879@80.11.86.76 6 | CSeq: 1 REGISTER 7 | Supported: com.salut.amoi,100rel 8 | Content-Length: 0 9 | Server: IMS1.0 10 | WWW-Authenticate: Digest realm="This is test realm",nonce="MTAwODc4ODQzNDIzMWI2MDY0OTBlNGJjMjJkZWNiMWRmOGUwNmIwMDVlMjZl",stale=false,algorithm=MD5,qop="auth,auth-int" 11 | 12 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip57: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | Record-Route: 4 | From: BigGuy 5 | To: LittleGuy ;tag=2341d 6 | Call-ID: 12345600@here.com 7 | CSeq: 2 INVITE 8 | Proxy-Authenticate: Digest realm="MCI SIP", 9 | domain="sip:ss2.mci.com", nonce="c1e22c41ae6cbe5ae983a9c8e88d359", 10 | opaque="", stale=FALSE, algorithm=MD5 11 | Content-Length: 0 12 | 13 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed0: -------------------------------------------------------------------------------- 1 | expected_error:0 illegal-missing content-length for unknown body type (to be rejected/accepted by app) 2 | INVITE sip:user@comapny.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/newformat 9 | Warning: illegal-missing content-length for unknown body type. 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip71: -------------------------------------------------------------------------------- 1 | INVITE name:user SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 6@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 174 9 | Warning: unknwon-request-uri-type. 10 | 11 | v=0 12 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 13 | s=SIP Call 14 | t=3149328700 0 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip57: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP here.com:5060 3 | Record-Route: 4 | From: BigGuy 5 | To: LittleGuy ;tag=2341d 6 | Call-ID: 12345600@here.com 7 | CSeq: 2 INVITE 8 | Proxy-Authenticate: Digest realm="MCI SIP", 9 | domain="sip:ss2.mci.com", nonce="c1e22c41ae6cbe5ae983a9c8e88d359", 10 | opaque="", stale=FALSE, algorithm=MD5 11 | Content-Length: 0 12 | 13 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip63: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 138 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 135.180.130.88 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | asdpasd08asdsdk:;;asd 17 | a0sdjhg8a0''...'';;;; 18 | 19 | -------------------------------------------------------------------------------- /c-ares-1.12.0/windows_port.c: -------------------------------------------------------------------------------- 1 | #include "ares_setup.h" 2 | 3 | 4 | /* only do the following on windows 5 | */ 6 | #if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS) 7 | 8 | #ifdef __WATCOMC__ 9 | /* 10 | * Watcom needs a DllMain() in order to initialise the clib startup code. 11 | */ 12 | BOOL 13 | WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved) 14 | { 15 | (void) hnd; 16 | (void) reason; 17 | (void) reserved; 18 | return (TRUE); 19 | } 20 | #endif 21 | 22 | #endif /* WIN32 builds only */ 23 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed0: -------------------------------------------------------------------------------- 1 | expected_error:0 illegal-missing content-length for unknown body type (to be rejected/accepted by app) 2 | INVITE sip:user@comapny.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/newformat 9 | Warning: illegal-missing content-length for unknown body type. 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /src-win/c-ares/windows_port.c: -------------------------------------------------------------------------------- 1 | #include "ares_setup.h" 2 | 3 | 4 | /* only do the following on windows 5 | */ 6 | #if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS) 7 | 8 | #ifdef __WATCOMC__ 9 | /* 10 | * Watcom needs a DllMain() in order to initialise the clib startup code. 11 | */ 12 | BOOL 13 | WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved) 14 | { 15 | (void) hnd; 16 | (void) reason; 17 | (void) reserved; 18 | return (TRUE); 19 | } 20 | #endif 21 | 22 | #endif /* WIN32 builds only */ 23 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sdp12: -------------------------------------------------------------------------------- 1 | v=0 2 | o=faxgw1 2890844527 2890844527 IN IP4 iftgw.there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 iftmg.there.com 6 | t=0 0 7 | m=image 49172 udptl t38 8 | a=T38FaxVersion:0 9 | a=T38maxBitRate:14400 10 | a=T38FaxFillBitRemoval:0 11 | a=T38FaxTranscodingMMR:0 12 | a=T38FaxTranscodingJBIG:0 13 | a=T38FaxRateManagement:transferredTCF 14 | a=T38FaxMaxBuffer:72 15 | a=T38FaxMaxDatagram:316 16 | a=T38FaxUdpEC:t38UDPRedundancy 17 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/contenttypes.txt: -------------------------------------------------------------------------------- 1 | # 2 | # exemples of content types 3 | # 4 | text/plain 5 | audio/basic 6 | applicatio/octet-stream 7 | application/multipart ;boundary="++" 8 | application/multipart ; boundary="gc0pJq0M08jU534c0p" 9 | application/multipart; boundary="gc0pJq0M:08jU534c0p" 10 | application/multipart ; boundary="simple boundary" 11 | application/multipart ; boundary="simple boundary" ; charset=us-ascii 12 | Message/partial;number=2; total=3; id="oc=jbpe0M2Yt4s@ok.atosc.org" ; name="u/nsb/Me.jpeg" 13 | 14 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed0: -------------------------------------------------------------------------------- 1 | expected_error:0 illegal-missing content-length for unknown body type (to be rejected/accepted by app) 2 | INVITE sip:user@comapny.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/newformat 9 | Warning: illegal-missing content-length for unknown body type. 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/contenttypes.txt: -------------------------------------------------------------------------------- 1 | # 2 | # exemples of content types 3 | # 4 | text/plain 5 | audio/basic 6 | applicatio/octet-stream 7 | application/multipart ;boundary="++" 8 | application/multipart ; boundary="gc0pJq0M08jU534c0p" 9 | application/multipart; boundary="gc0pJq0M:08jU534c0p" 10 | application/multipart ; boundary="simple boundary" 11 | application/multipart ; boundary="simple boundary" ; charset=us-ascii 12 | Message/partial;number=2; total=3; id="oc=jbpe0M2Yt4s@ok.atosc.org" ; name="u/nsb/Me.jpeg" 13 | 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip63: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 138 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 135.180.130.88 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | asdpasd08asdsdk:;;asd 17 | a0sdjhg8a0''...'';;;; 18 | 19 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip71: -------------------------------------------------------------------------------- 1 | INVITE name:user SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 6@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 174 9 | Warning: unknwon-request-uri-type. 10 | 11 | v=0 12 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 13 | s=SIP Call 14 | t=3149328700 0 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/contenttypes.txt: -------------------------------------------------------------------------------- 1 | # 2 | # exemples of content types 3 | # 4 | text/plain 5 | audio/basic 6 | applicatio/octet-stream 7 | application/multipart ;boundary="++" 8 | application/multipart ; boundary="gc0pJq0M08jU534c0p" 9 | application/multipart; boundary="gc0pJq0M:08jU534c0p" 10 | application/multipart ; boundary="simple boundary" 11 | application/multipart ; boundary="simple boundary" ; charset=us-ascii 12 | Message/partial;number=2; total=3; id="oc=jbpe0M2Yt4s@ok.atosc.org" ; name="u/nsb/Me.jpeg" 13 | 14 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip63: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:j.user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 0ha0isndaksdj@10.0.0.1 5 | CSeq: 8 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 138 9 | 10 | v=0 11 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 12 | c=IN IP4 135.180.130.88 13 | m=audio 492170 RTP/AVP 0 12 14 | m=video 3227 RTP/AVP 31 15 | a=rtpmap:31 LPC 16 | asdpasd08asdsdk:;;asd 17 | a0sdjhg8a0''...'';;;; 18 | 19 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip71: -------------------------------------------------------------------------------- 1 | INVITE name:user SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 6@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 174 9 | Warning: unknwon-request-uri-type. 10 | 11 | v=0 12 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 13 | s=SIP Call 14 | t=3149328700 0 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sdp12: -------------------------------------------------------------------------------- 1 | v=0 2 | o=faxgw1 2890844527 2890844527 IN IP4 iftgw.there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 iftmg.there.com 6 | t=0 0 7 | m=image 49172 udptl t38 8 | a=T38FaxVersion:0 9 | a=T38maxBitRate:14400 10 | a=T38FaxFillBitRemoval:0 11 | a=T38FaxTranscodingMMR:0 12 | a=T38FaxTranscodingJBIG:0 13 | a=T38FaxRateManagement:transferredTCF 14 | a=T38FaxMaxBuffer:72 15 | a=T38FaxMaxDatagram:316 16 | a=T38FaxUdpEC:t38UDPRedundancy 17 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sdp12: -------------------------------------------------------------------------------- 1 | v=0 2 | o=faxgw1 2890844527 2890844527 IN IP4 iftgw.there.com 3 | s=Session SDP 4 | i=http://www.ietf.org/internet-drafts/draft-ietf-sip-call-flows-05.txt 5 | c=IN IP4 iftmg.there.com 6 | t=0 0 7 | m=image 49172 udptl t38 8 | a=T38FaxVersion:0 9 | a=T38maxBitRate:14400 10 | a=T38FaxFillBitRemoval:0 11 | a=T38FaxTranscodingMMR:0 12 | a=T38FaxTranscodingJBIG:0 13 | a=T38FaxRateManagement:transferredTCF 14 | a=T38FaxMaxBuffer:72 15 | a=T38FaxMaxDatagram:316 16 | a=T38FaxUdpEC:t38UDPRedundancy 17 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip76: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 9@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Max-Forwards: 0 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: Max-Forwards-set-to-zero. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip90: -------------------------------------------------------------------------------- 1 | INFO sip:bob@one.example.com SIP/2.0 2 | Via: SIP/2.0/UDP sip.example.com;branch=7c337f30d7ce.1 3 | ;maddr=239.128.16.254;ttl=16 4 | Via: SIP/2.0/UDP mouse.wonderland.com 5 | From: Alice ;tag=1 6 | To: Bob 7 | Call-ID: 602214199@mouse.wonderland.com 8 | CSeq: 1 INVITE 9 | Contact: Alice 10 | Authentication-Info: 00000000000000000000000000000 a= 11 | Subject: SIP will be discussed, too 12 | Content-Length: 0 13 | 14 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip60: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP ss1.wcom.com:5060;branch=230f2.1 3 | Via: SIP/2.0/UDP here.com:5060 4 | Record-Route: 5 | From: BigGuy 6 | To: LittleGuy ;tag=838209 7 | Call-ID: 12345600@here.com 8 | CSeq: 2 INVITE 9 | Proxy-Authenticate: Digest realm="MCI SIP", 10 | domain="sip:ss2.mci.com", nonce="c1e22c41ae6cbe5ae983a9c8e88d359", 11 | opaque="", stale=FALSE, algorithm=MD5 12 | Content-Length: 0 13 | 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/help/INSTALL.vxworks: -------------------------------------------------------------------------------- 1 | 2 | Install process for VxWorks. (latest tested 0.8.8) 3 | ____________________________ 4 | 5 | From a tornado user: 6 | 7 | I built them in tornado GUI, and just test them in the simulate. 8 | 1. Create a bootable vxworks image project. 9 | 2. Add all files in the new project. 10 | 3. Include the networks componets. 11 | 4. Add the compiler parameter as follows: 12 | -D__VXWORKS_OS__ -DTHREAD_PTHREAD -D_REENTRANT -DOSIP_MT 13 | -DHAVE_SIGNAL_H -DENABLE_DEBUG -DENABLE_TRACE -DSHOW_MESSAGE 14 | -------------------------------------------------------------------------------- /src-win/osip/help/INSTALL.vxworks: -------------------------------------------------------------------------------- 1 | 2 | Install process for VxWorks. (latest tested 0.8.8) 3 | ____________________________ 4 | 5 | From a tornado user: 6 | 7 | I built them in tornado GUI, and just test them in the simulate. 8 | 1. Create a bootable vxworks image project. 9 | 2. Add all files in the new project. 10 | 3. Include the networks componets. 11 | 4. Add the compiler parameter as follows: 12 | -D__VXWORKS_OS__ -DTHREAD_PTHREAD -D_REENTRANT -DOSIP_MT 13 | -DHAVE_SIGNAL_H -DENABLE_DEBUG -DENABLE_TRACE -DSHOW_MESSAGE 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed12~: -------------------------------------------------------------------------------- 1 | INVITE SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 1@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 174 9 | Warning: illegal Request-uri-contais-<>. 10 | 11 | v=0 12 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 13 | s=SIP Call 14 | t=3149328700 0 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip60: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP ss1.wcom.com:5060;branch=230f2.1 3 | Via: SIP/2.0/UDP here.com:5060 4 | Record-Route: 5 | From: BigGuy 6 | To: LittleGuy ;tag=838209 7 | Call-ID: 12345600@here.com 8 | CSeq: 2 INVITE 9 | Proxy-Authenticate: Digest realm="MCI SIP", 10 | domain="sip:ss2.mci.com", nonce="c1e22c41ae6cbe5ae983a9c8e88d359", 11 | opaque="", stale=FALSE, algorithm=MD5 12 | Content-Length: 0 13 | 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip76: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 9@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Max-Forwards: 0 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: Max-Forwards-set-to-zero. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /5.3.0/exosip-5.3.0/tools/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | if COMPILE_TOOLS 3 | bin_PROGRAMS = sip_reg sip_monitor sip_storm 4 | endif 5 | 6 | AM_CFLAGS = $(EXOSIP_FLAGS) 7 | 8 | sip_storm_SOURCES = sip_storm.c 9 | sip_storm_LDADD = $(top_builddir)/src/libeXosip2.la $(OSIP_LIBS) 10 | 11 | sip_reg_SOURCES = sip_reg.c 12 | sip_reg_LDADD = $(top_builddir)/src/libeXosip2.la $(OSIP_LIBS) 13 | 14 | sip_monitor_SOURCES = sip_monitor.c 15 | sip_monitor_LDADD = $(top_builddir)/src/libeXosip2.la $(OSIP_LIBS) 16 | 17 | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/include $(OSIP_CFLAGS) 18 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/help/INSTALL.vxworks: -------------------------------------------------------------------------------- 1 | 2 | Install process for VxWorks. (latest tested 0.8.8) 3 | ____________________________ 4 | 5 | From a tornado user: 6 | 7 | I built them in tornado GUI, and just test them in the simulate. 8 | 1. Create a bootable vxworks image project. 9 | 2. Add all files in the new project. 10 | 3. Include the networks componets. 11 | 4. Add the compiler parameter as follows: 12 | -D__VXWORKS_OS__ -DTHREAD_PTHREAD -D_REENTRANT -DOSIP_MT 13 | -DHAVE_SIGNAL_H -DENABLE_DEBUG -DENABLE_TRACE -DSHOW_MESSAGE 14 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip60: -------------------------------------------------------------------------------- 1 | SIP/2.0 407 Proxy Authorization Required 2 | Via: SIP/2.0/UDP ss1.wcom.com:5060;branch=230f2.1 3 | Via: SIP/2.0/UDP here.com:5060 4 | Record-Route: 5 | From: BigGuy 6 | To: LittleGuy ;tag=838209 7 | Call-ID: 12345600@here.com 8 | CSeq: 2 INVITE 9 | Proxy-Authenticate: Digest realm="MCI SIP", 10 | domain="sip:ss2.mci.com", nonce="c1e22c41ae6cbe5ae983a9c8e88d359", 11 | opaque="", stale=FALSE, algorithm=MD5 12 | Content-Length: 0 13 | 14 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip76: -------------------------------------------------------------------------------- 1 | INVITE sip:user@company.com SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 9@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Max-Forwards: 0 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: Max-Forwards-set-to-zero. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip17: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:watson@boston.bell-tel.com 8 | Content-Type: application/sdp 9 | Content-Length: 130 10 | 11 | v=0 12 | o=watson 4858949 4858949 IN IP4 192.1.2.3 13 | s=I'm on my way 14 | t=3149329600 0 15 | c=IN IP4 boston.bell-tel.com 16 | m=audio 5004 RTP/AVP 0 3 17 | a=rtpmap:0 PCMU/8000 18 | a=rtpmap:3 GSM/8000 19 | 20 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed5: -------------------------------------------------------------------------------- 1 | expected_error:0 illegal value for content-length 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: -999 10 | Warning: illegal value for content-length. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip96: -------------------------------------------------------------------------------- 1 | INVITE sip:watson@boston.bell-tel.com SIP/2.0 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: T. Watson 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: 8 | Subject: Mr. Watson, come here. 9 | Content-Type: application/sdp 10 | Content-Length: 120 11 | 12 | v=0 13 | o=bell 53655765 2353687637 IN IP4 128.3.4.5 14 | s=Mr. Watson, come here. 15 | c=IN IP4 kton.bell-tel.com 16 | t=3149328600 0 17 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip69: -------------------------------------------------------------------------------- 1 | INVITE sip:sip%3Auser%40example.com@company.com;other-param=summit SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 4@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 174 9 | Warning: legal-sip-url-containing-escaped-characters 10 | 11 | v=0 12 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 13 | s=SIP Call 14 | t=3149328700 0 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed2: -------------------------------------------------------------------------------- 1 | expected_error:-5 2 | INVITE sip:user@company.com SIP/2.0 3 | Via: SIP/2.0/UDP 135.180.130.133 4 | CSeq: 0 INVITE 5 | Call-ID: 98asdh@10.1.1.1 6 | Call-ID: 98asdh@10.1.1.2 7 | From: sip:caller@university.edu 8 | From: sip:caller@organization.org 9 | To: sip:user@company.com 10 | Content-Type: application/sdp 11 | Warning: illegal several Call-ID and From header. 12 | 13 | v=0 14 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip17: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:watson@boston.bell-tel.com 8 | Content-Type: application/sdp 9 | Content-Length: 130 10 | 11 | v=0 12 | o=watson 4858949 4858949 IN IP4 192.1.2.3 13 | s=I'm on my way 14 | t=3149329600 0 15 | c=IN IP4 boston.bell-tel.com 16 | m=audio 5004 RTP/AVP 0 3 17 | a=rtpmap:0 PCMU/8000 18 | a=rtpmap:3 GSM/8000 19 | 20 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed12: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal Request-uri-contains-<>. 2 | INVITE SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 1@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal Request-uri-contains-<>. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip17: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | Via: SIP/2.0/UDP kton.bell-tel.com 3 | From: A. Bell ;tag=3 4 | To: ;tag=37462311 5 | Call-ID: 662606876@kton.bell-tel.com 6 | CSeq: 1 INVITE 7 | Contact: sip:watson@boston.bell-tel.com 8 | Content-Type: application/sdp 9 | Content-Length: 130 10 | 11 | v=0 12 | o=watson 4858949 4858949 IN IP4 192.1.2.3 13 | s=I'm on my way 14 | t=3149329600 0 15 | c=IN IP4 boston.bell-tel.com 16 | m=audio 5004 RTP/AVP 0 3 17 | a=rtpmap:0 PCMU/8000 18 | a=rtpmap:3 GSM/8000 19 | 20 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed5: -------------------------------------------------------------------------------- 1 | expected_error:0 illegal value for content-length 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: -999 10 | Warning: illegal value for content-length. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed6: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal missing quote in To header 2 | INVITE sip:user@company.com SIP/2.0 3 | To: "Mr. J. User 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 138 10 | Warning: illegal missing quote in To header. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed8: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-space-after-request-uri 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 3@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal-space-after-request-uri 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed5: -------------------------------------------------------------------------------- 1 | expected_error:0 illegal value for content-length 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: -999 10 | Warning: illegal value for content-length. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip69: -------------------------------------------------------------------------------- 1 | INVITE sip:sip%3Auser%40example.com@company.com;other-param=summit SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 4@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 174 9 | Warning: legal-sip-url-containing-escaped-characters 10 | 11 | v=0 12 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 13 | s=SIP Call 14 | t=3149328700 0 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/routes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # 5 | # routes with rr-params 6 | # 7 | ;ttii="qsd" 8 | ;ttii="qsd" 9 | ;ttizedi=qsd-qsda27562;ouh-=ZDZRC 10 | # 11 | # Routes from draft-ietf-sip-call-flows-04.txt 12 | # 13 | , 14 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip69: -------------------------------------------------------------------------------- 1 | INVITE sip:sip%3Auser%40example.com@company.com;other-param=summit SIP/2.0 2 | To: sip:user@company.com 3 | From: sip:caller@university.edu 4 | Call-ID: 4@10.0.0.1 5 | CSeq: 1 INVITE 6 | Via: SIP/2.0/UDP 135.180.130.133 7 | Content-Type: application/sdp 8 | Content-Length: 174 9 | Warning: legal-sip-url-containing-escaped-characters 10 | 11 | v=0 12 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 13 | s=SIP Call 14 | t=3149328700 0 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/routes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # 5 | # routes with rr-params 6 | # 7 | ;ttii="qsd" 8 | ;ttii="qsd" 9 | ;ttizedi=qsd-qsda27562;ouh-=ZDZRC 10 | # 11 | # Routes from draft-ietf-sip-call-flows-04.txt 12 | # 13 | , 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed2: -------------------------------------------------------------------------------- 1 | expected_error:-5 2 | INVITE sip:user@company.com SIP/2.0 3 | Via: SIP/2.0/UDP 135.180.130.133 4 | CSeq: 0 INVITE 5 | Call-ID: 98asdh@10.1.1.1 6 | Call-ID: 98asdh@10.1.1.2 7 | From: sip:caller@university.edu 8 | From: sip:caller@organization.org 9 | To: sip:user@company.com 10 | Content-Type: application/sdp 11 | Warning: illegal several Call-ID and From header. 12 | 13 | v=0 14 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed4: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal value for content-length (missing data?) 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 9999 10 | Warning: illegal value for content-length (missing data?). 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/routes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # 5 | # routes with rr-params 6 | # 7 | ;ttii="qsd" 8 | ;ttii="qsd" 9 | ;ttizedi=qsd-qsda27562;ouh-=ZDZRC 10 | # 11 | # Routes from draft-ietf-sip-call-flows-04.txt 12 | # 13 | , 14 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed2: -------------------------------------------------------------------------------- 1 | expected_error:-5 2 | INVITE sip:user@company.com SIP/2.0 3 | Via: SIP/2.0/UDP 135.180.130.133 4 | CSeq: 0 INVITE 5 | Call-ID: 98asdh@10.1.1.1 6 | Call-ID: 98asdh@10.1.1.2 7 | From: sip:caller@university.edu 8 | From: sip:caller@organization.org 9 | To: sip:user@company.com 10 | Content-Type: application/sdp 11 | Warning: illegal several Call-ID and From header. 12 | 13 | v=0 14 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 15 | c=IN IP4 135.180.130.88 16 | m=audio 492170 RTP/AVP 0 12 17 | m=video 3227 RTP/AVP 31 18 | a=rtpmap:31 LPC 19 | 20 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed10: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-LWS-within-the-sip-url. 2 | INVITE sip:user@company.com; transport=udp SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 2@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal-LWS-within-the-sip-url. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip-malformed3: -------------------------------------------------------------------------------- 1 | expected_error:-5 incorrect Via and Contact headers. 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133;;,; 8 | Contact: "" <> ;,"Joe" ;;,,;; 9 | Content-Type: application/sdp 10 | Warning: incorrect Via and Contact headers. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip88: -------------------------------------------------------------------------------- 1 | expected_error:0 a very simple message 2 | SIP/2.0 200 OK 3 | To: ;tag=fb86ad2694115d75c77dce61523c9f07.ca6e 4 | From: ;tag=a1fd 5 | Via: SIP/2.0/UDP cj14:5002;branch=z9hG4bK-c87542-472987176-1;received=1.2.3.4 6 | Call-ID: 048cec32 7 | CSeq: 2 REGISTER 8 | Contact: ;q=1.00;expires=1951 9 | Contact: ;q=0.50;expires=10 10 | Contact: ;q=0.00;expires=100 11 | Server: The Server 12 | Content-Length: 0 13 | Warning: junk junk junk 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed12: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal Request-uri-contains-<>. 2 | INVITE SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 1@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal Request-uri-contains-<>. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed6: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal missing quote in To header 2 | INVITE sip:user@company.com SIP/2.0 3 | To: "Mr. J. User 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 138 10 | Warning: illegal missing quote in To header. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed8: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-space-after-request-uri 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 3@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal-space-after-request-uri 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed12: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal Request-uri-contains-<>. 2 | INVITE SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 1@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal Request-uri-contains-<>. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed6: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal missing quote in To header 2 | INVITE sip:user@company.com SIP/2.0 3 | To: "Mr. J. User 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 138 10 | Warning: illegal missing quote in To header. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /5.3.0/libosip2-5.3.0/src/test/res/sip-malformed8: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-space-after-request-uri 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 3@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal-space-after-request-uri 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /c-ares-1.12.0/test/configure.ac: -------------------------------------------------------------------------------- 1 | AC_PREREQ(2.57) 2 | AC_INIT([c-ares-test],[-],[-]) 3 | AC_CONFIG_SRCDIR([ares-test.cc]) 4 | AC_CONFIG_MACRO_DIR([../m4]) 5 | 6 | AM_INIT_AUTOMAKE([no-define]) 7 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 8 | 9 | dnl Checks for programs. 10 | AC_PROG_CXX 11 | AX_CXX_COMPILE_STDCXX_11([noext],[mandatory]) 12 | LT_INIT 13 | AC_SUBST(LIBTOOL_DEPS) 14 | AX_PTHREAD 15 | AX_CODE_COVERAGE 16 | AX_CHECK_USER_NAMESPACE 17 | AX_CHECK_UTS_NAMESPACE 18 | 19 | AC_CHECK_HEADERS(netdb.h netinet/tcp.h) 20 | AC_CONFIG_HEADERS([config.h]) 21 | AC_CONFIG_FILES([Makefile]) 22 | AC_OUTPUT 23 | -------------------------------------------------------------------------------- /src-win/c-ares/test/configure.ac: -------------------------------------------------------------------------------- 1 | AC_PREREQ(2.57) 2 | AC_INIT([c-ares-test],[-],[-]) 3 | AC_CONFIG_SRCDIR([ares-test.cc]) 4 | AC_CONFIG_MACRO_DIR([../m4]) 5 | 6 | AM_INIT_AUTOMAKE([no-define]) 7 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 8 | 9 | dnl Checks for programs. 10 | AC_PROG_CXX 11 | AX_CXX_COMPILE_STDCXX_11([noext],[mandatory]) 12 | LT_INIT 13 | AC_SUBST(LIBTOOL_DEPS) 14 | AX_PTHREAD 15 | AX_CODE_COVERAGE 16 | AX_CHECK_USER_NAMESPACE 17 | AX_CHECK_UTS_NAMESPACE 18 | 19 | AC_CHECK_HEADERS(netdb.h netinet/tcp.h) 20 | AC_CONFIG_HEADERS([config.h]) 21 | AC_CONFIG_FILES([Makefile]) 22 | AC_OUTPUT 23 | -------------------------------------------------------------------------------- /src-win/exosip/Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS = -I scripts 2 | EXTRA_DIST = README autogen.sh LICENSE.OpenSSL 3 | 4 | SUBDIRS = scripts platform src include tools help 5 | 6 | doxygen: 7 | doxygen help/doxygen/DoxyFile 8 | 9 | upload: dist 10 | @echo "######## Maintainer only ##########"; 11 | @echo "building files for upload in ftp://savannah.gnu.org/incoming/savannah/exosip"; 12 | @echo "building: $(PACKAGE)-$(VERSION).tar.gz.sig"; 13 | gpg -b $(PACKAGE)-$(VERSION).tar.gz 14 | 15 | indent: 16 | indent */*/*.h 17 | indent */*.h 18 | indent */*.c 19 | rm -rf */*/*.h~ 20 | rm -rf */*.h~ 21 | rm -rf */*.c~ 22 | -------------------------------------------------------------------------------- /libexosip2-5.0.0/Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS = -I scripts 2 | EXTRA_DIST = README autogen.sh LICENSE.OpenSSL 3 | 4 | SUBDIRS = scripts platform src include tools help 5 | 6 | doxygen: 7 | doxygen help/doxygen/DoxyFile 8 | 9 | upload: dist 10 | @echo "######## Maintainer only ##########"; 11 | @echo "building files for upload in ftp://savannah.gnu.org/incoming/savannah/exosip"; 12 | @echo "building: $(PACKAGE)-$(VERSION).tar.gz.sig"; 13 | gpg -b $(PACKAGE)-$(VERSION).tar.gz 14 | 15 | indent: 16 | indent */*/*.h 17 | indent */*.h 18 | indent */*.c 19 | rm -rf */*/*.h~ 20 | rm -rf */*.h~ 21 | rm -rf */*.c~ 22 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed4: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal value for content-length (missing data?) 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 9999 10 | Warning: illegal value for content-length (missing data?). 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/recordroutes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # 5 | # rr with rr-params 6 | # 7 | ;ttii="qsd" 8 | ;ttii="qsd" 9 | ;ttizedi=qsd-qsda27562;ouh-=ZDZRC 10 | # 11 | # R-Routes from draft-ietf-sip-call-flows-04.txt 12 | # 13 | , 14 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip44: -------------------------------------------------------------------------------- 1 | SIP/2.0 200 OK 2 | From: Alice ;tag=1 3 | To: Bob ;tag=376364382 4 | Call-ID: 6378@cat.wonderland.com 5 | CSeq: 1 OPTIONS 6 | Content-Length: 81 7 | Content-Type: application/sdp 8 | 9 | v=0 10 | o=alice 3149329138 3149329165 IN IP4 24.124.37.3 11 | s=Security problems 12 | t=3149328650 0 13 | c=IN IP4 24.124.37.3 14 | m=audio 0 RTP/AVP 0 1 3 99 15 | a=rtpmap:0 PCMU/8000 16 | a=rtpmap:1 1016/8000 17 | a=rtpmap:3 GSM/8000 18 | a=rtpmap:99 SX7300/8000 19 | m=video 0 RTP/AVP 31 34 20 | a=rtpmap:31 H261/90000 21 | a=rtpmap:34 H263/90000 22 | 23 | -------------------------------------------------------------------------------- /src-win/osip/src/test/res/sip75: -------------------------------------------------------------------------------- 1 | expected_error:0 INVITE with Passed Expries Time 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 8@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Expires: Thu, 01 Dec 1994 16:00:00 GMT 9 | Content-Type: application/sdp 10 | Content-Length: 174 11 | Warning: illegal-time-in-expires-header 12 | 13 | v=0 14 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 15 | s=SIP Call 16 | t=3149328700 0 17 | c=IN IP4 135.180.130.88 18 | m=audio 492170 RTP/AVP 0 12 19 | m=video 3227 RTP/AVP 31 20 | a=rtpmap:31 LPC 21 | 22 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/recordroutes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # 5 | # rr with rr-params 6 | # 7 | ;ttii="qsd" 8 | ;ttii="qsd" 9 | ;ttizedi=qsd-qsda27562;ouh-=ZDZRC 10 | # 11 | # R-Routes from draft-ietf-sip-call-flows-04.txt 12 | # 13 | , 14 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed10: -------------------------------------------------------------------------------- 1 | expected_error:-5 illegal-LWS-within-the-sip-url. 2 | INVITE sip:user@company.com; transport=udp SIP/2.0 3 | To: sip:user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 2@10.0.0.1 6 | CSeq: 1 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133 8 | Content-Type: application/sdp 9 | Content-Length: 174 10 | Warning: illegal-LWS-within-the-sip-url. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | s=SIP Call 15 | t=3149328700 0 16 | c=IN IP4 135.180.130.88 17 | m=audio 492170 RTP/AVP 0 12 18 | m=video 3227 RTP/AVP 31 19 | a=rtpmap:31 LPC 20 | 21 | -------------------------------------------------------------------------------- /libosip2-5.0.0/src/test/res/sip-malformed3: -------------------------------------------------------------------------------- 1 | expected_error:-5 incorrect Via and Contact headers. 2 | INVITE sip:user@company.com SIP/2.0 3 | To: sip:j.user@company.com 4 | From: sip:caller@university.edu 5 | Call-ID: 0ha0isndaksdj@10.0.0.1 6 | CSeq: 8 INVITE 7 | Via: SIP/2.0/UDP 135.180.130.133;;,; 8 | Contact: "" <> ;,"Joe" ;;,,;; 9 | Content-Type: application/sdp 10 | Warning: incorrect Via and Contact headers. 11 | 12 | v=0 13 | o=mhandley 29739 7272939 IN IP4 126.5.4.3 14 | c=IN IP4 135.180.130.88 15 | m=audio 492170 RTP/AVP 0 12 16 | m=video 3227 RTP/AVP 31 17 | a=rtpmap:31 LPC 18 | 19 | --------------------------------------------------------------------------------