You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Jenkins User f6705530a4
Release new version 1:3.3-1~bpo70+1+0~mr3.8.2.1
10 years ago
debian Release new version 1:3.3-1~bpo70+1+0~mr3.8.2.1 10 years ago
pcap Imported Upstream version 3.3 12 years ago
tools/monitor Imported Upstream version 3.2 12 years ago
LICENSE.txt Imported Upstream version 3.3 12 years ago
MEDIA.txt Imported Upstream version 3.2 12 years ago
Makefile Imported Upstream version 3.3 12 years ago
Makefile.am Imported Upstream version 3.3 12 years ago
README.txt Imported Upstream version 3.3 12 years ago
THANKS Imported Upstream version 3.3 12 years ago
actions.cpp Imported Upstream version 3.2 12 years ago
actions.hpp Imported Upstream version 3.2 12 years ago
auth.c Imported Upstream version 3.3 12 years ago
call.cpp Imported Upstream version 3.3 12 years ago
call.hpp Imported Upstream version 3.3 12 years ago
comp.c Imported Upstream version 3.2 12 years ago
comp.h Imported Upstream version 3.2 12 years ago
configure.ac Imported Upstream version 3.3 12 years ago
deadcall.cpp Imported Upstream version 3.3 12 years ago
deadcall.hpp Imported Upstream version 3.2 12 years ago
fortune.cpp Imported Upstream version 3.2 12 years ago
infile.cpp Imported Upstream version 3.2 12 years ago
infile.hpp Imported Upstream version 3.2 12 years ago
listener.cpp Imported Upstream version 3.2 12 years ago
listener.hpp Imported Upstream version 3.2 12 years ago
local.mk Imported Upstream version 3.2 12 years ago
md5.c Imported Upstream version 3.3 12 years ago
md5.h Imported Upstream version 3.3 12 years ago
message.cpp Imported Upstream version 3.3 12 years ago
message.hpp Imported Upstream version 3.2 12 years ago
milenage.c Imported Upstream version 3.2 12 years ago
milenage.h Imported Upstream version 3.2 12 years ago
opentask.cpp Imported Upstream version 3.3 12 years ago
opentask.hpp Imported Upstream version 3.2 12 years ago
prepare_pcap.c Imported Upstream version 3.2 12 years ago
prepare_pcap.h Imported Upstream version 3.2 12 years ago
reporttask.cpp Imported Upstream version 3.2 12 years ago
reporttask.hpp Imported Upstream version 3.2 12 years ago
rijndael.c Imported Upstream version 3.2 12 years ago
rijndael.h Imported Upstream version 3.2 12 years ago
scenario.cpp Imported Upstream version 3.3 12 years ago
scenario.hpp Imported Upstream version 3.3 12 years ago
screen.cpp Imported Upstream version 3.2 12 years ago
screen.hpp Imported Upstream version 3.2 12 years ago
send_packets.c Imported Upstream version 3.2 12 years ago
send_packets.h Imported Upstream version 3.2 12 years ago
sipp.cpp Imported Upstream version 3.3 12 years ago
sipp.dtd Imported Upstream version 3.2 12 years ago
sipp.hpp Imported Upstream version 3.3 12 years ago
socketowner.cpp Imported Upstream version 3.2 12 years ago
socketowner.hpp Imported Upstream version 3.2 12 years ago
sslcommon.h Imported Upstream version 3.2 12 years ago
sslinit.c Imported Upstream version 3.2 12 years ago
sslthreadsafe.c Imported Upstream version 3.2 12 years ago
stat.cpp Imported Upstream version 3.3 12 years ago
stat.hpp Imported Upstream version 3.2 12 years ago
task.cpp Imported Upstream version 3.2 12 years ago
task.hpp Imported Upstream version 3.2 12 years ago
variables.cpp Imported Upstream version 3.2 12 years ago
variables.hpp Imported Upstream version 3.2 12 years ago
watchdog.cpp Imported Upstream version 3.2 12 years ago
watchdog.hpp Imported Upstream version 3.2 12 years ago
xp_parser.c Imported Upstream version 3.3 12 years ago
xp_parser.h Imported Upstream version 3.2 12 years ago

README.txt

#   SIPp - a SIP protocol test tool
#   Copyright (C) 2003,2004,2005,2006 - The Authors
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.

BUILDING
********

This is the SIPp package. Please refer to the http://sipp.sourceforge.net/
webpage for details and download of the last version.

Normally, you should be able to build SIPp by just typing 
"autoreconf -ivf; ./configure --with-pcap --with-sctp; make" in the
current directory. Then "sipp -h" will give you access to the online help.

CONTRIBUTING
************

SIPp is free software, under the terms of the GPL licence (see the
LICENCE.txt file for details). You can contribute to the development 
of SIPp and contact us via Sourceforge to integrate your changes. If you 
make changes in Sipp, *PLEASE* follow a few coding rules:

  - Use 80 columns code,

  - Do *NOT* use tabulations for indentation. Use spaces,

  - Please stay conform with the current indentation style (2 spaces
    indent, standard Emacs-like indentation). Examples:

    if (condition) {
      f();
    } else {
      g();
    }

  - Use "{" in if conditions even if there is only one instruction
    (see example above).

  - Do not use std C++ libs if something equivalent exists in libc
    (better portability). (e.g. prefer "printf" to "cout <<" ).

  - Check your changes can be compiled on:
 
      - Linux,
      - HPUX,
      - Tru64,

    (We can provide help on these portability points).

Thanks,

  Rob Day <rkd@rkd.me.uk>
  ojacques@users.sourceforge.net
  richard_gayraud@users.sourceforge.net

******************************************************************