ss7 stack
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 375
stackviz 0.1
stackviz project is the stack visualizer. more>>
stackviz project is the stack visualizer.
When you debug your program with gdb and you want to imagine what goes on on the stack you can use the stack visualizer.
In order to use it, you have to issue in gdb that three commands:
print $esp
print $ebp
x/48w $esp
If you issue not only that three magic commands, but also something like:
print &< some_variable >
the stack visualizer will know what is the address of this variable and will show you where it lies on the stack. Of course you can do this with more variables.
<<lessWhen you debug your program with gdb and you want to imagine what goes on on the stack you can use the stack visualizer.
In order to use it, you have to issue in gdb that three commands:
print $esp
print $ebp
x/48w $esp
If you issue not only that three magic commands, but also something like:
print &< some_variable >
the stack visualizer will know what is the address of this variable and will show you where it lies on the stack. Of course you can do this with more variables.
Download (0.16MB)
Added: 2006-02-02 License: GPL (GNU General Public License) Price:
1359 downloads
Vovida SIP Stack 1.5.0
The Vovida SIP stack is an implementation of the protocol defined in RFC 2543. more>>
The Vovida SIP stack is an implementation of the protocol defined in RFC 2543, the Session Initiation Protocol, which can be used to initiate voice connections (phone calls) over IP networks.
It offers an object-oriented C++ API as well as sample applications demonstrating its use.
<<lessIt offers an object-oriented C++ API as well as sample applications demonstrating its use.
Download (6.60MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
908 downloads
Westhawks Java SNMP stack 5.0
Westhawk SNMP is a lightweight SNMP stack in Java, with Java applet, application, and servlet examples. more>>
Westhawk SNMP is a lightweight SNMP stack in Java, with Java applet, application, and servlet examples.
The stack provides manager functionality for SNMPv1, SNMPv2c, and SNMPv3 (authentication and privacy).
Westhawks Java SNMP stack is capable of sending and receiving PDUs, but has limited agent functionality. The stack supports IPv6.
Enhancements:
- The stack is able to listen for incoming requests (and no longer for traps only).
- The stack is able to listen on multiple ports for requests and traps.
- Contexts (incoming and outgoing) can be bound to a local bind address.
- A separate package stubBrowser4_14.zip that contains a new and experimantal Stub Browser was released.
- Support for DateAndTime text convention was added to AsnOctets.
- A MultiSourcePdu that can do broadcast requests was added.
- Built-in support for IPv6 was added.
- Built-in support for "Reliable SNMP" was added.
<<lessThe stack provides manager functionality for SNMPv1, SNMPv2c, and SNMPv3 (authentication and privacy).
Westhawks Java SNMP stack is capable of sending and receiving PDUs, but has limited agent functionality. The stack supports IPv6.
Enhancements:
- The stack is able to listen for incoming requests (and no longer for traps only).
- The stack is able to listen on multiple ports for requests and traps.
- Contexts (incoming and outgoing) can be bound to a local bind address.
- A separate package stubBrowser4_14.zip that contains a new and experimantal Stub Browser was released.
- Support for DateAndTime text convention was added to AsnOctets.
- A MultiSourcePdu that can do broadcast requests was added.
- Built-in support for IPv6 was added.
- Built-in support for "Reliable SNMP" was added.
Download (1.9MB)
Added: 2006-03-29 License: Freeware Price:
1310 downloads
Slide & Stack 2.1.0.0
Slide & Stack is a brain challenging game. more>>
Slide & Stack is a brain challenging game. Looks like the 2D version of Rubix but is something different. Simple movements and infinite possibilities makes you train your logic thinking in order to solve this puzzle.
The game starts with a four colored bar and a four by four square with all colors in their place. Suddenly the bar starts to move, rotating around the square and stacking itself into the square. When it stops moving, all colors are out of place and is your turn to organize them.
Unlock the logic behind this game. Stop and restart playing selecting the difficulty level at will. On-game animated instructions will help you understand the dynamics.
Play Slide & Stack, discover how to solve it and share your method with other players. Look at the solving hints page for ideas.
<<lessThe game starts with a four colored bar and a four by four square with all colors in their place. Suddenly the bar starts to move, rotating around the square and stacking itself into the square. When it stops moving, all colors are out of place and is your turn to organize them.
Unlock the logic behind this game. Stop and restart playing selecting the difficulty level at will. On-game animated instructions will help you understand the dynamics.
Play Slide & Stack, discover how to solve it and share your method with other players. Look at the solving hints page for ideas.
Download (1.3MB)
Added: 2006-08-06 License: Freeware Price:
1177 downloads
Tie::Hash::Stack 0.09
Tie::Hash::Stack is a Perl module which maintains an array of hashes like a stack. more>>
Tie::Hash::Stack is a Perl module which maintains an array of hashes like a stack.
SYNOPSIS
use Tie::Hash::Stack qw(pop_hash push_hash merge_hash);
my %hash;
tie( %hash, "Tie::Hash::Stack" ); # Ties the hash
$hash{ 1 } = "one";
$hash{ 2 } = "two";
$hash{ 3 } = "three";
push_hash %hash; # Pushes a new hash on the stack
$hash{ 2 } = "II"; # $hash{ 2 } now II
$hash{ 4 } = "IV";
push_hash %hash;
$hash{ 3 } = "9/3"; # $hash{ 3 } now 9/3
$hash{ 5 } = "10/2";
pop_hash %hash; # $hash{ 3 } now three;
delete $hash{ 2 }; # $hash{ 2 } now undefed;
my %merged = merge_hash %hash; # ( 1=>one, 3=>three, 4=>IV )
Tie::Hash::Stack allows one to tie a hash to a data structure that is composed of an ordered (FILO) sequence of hashes; hash values are always set on the newest hash of the stack, and are retrieved from the hash that contains the requested that is newest on the stack. The stack can be manipulated to add or remove these hashes. This type of structure is good when one is collecting data in stages with the possibility of having to "back up" to previous stages.
<<lessSYNOPSIS
use Tie::Hash::Stack qw(pop_hash push_hash merge_hash);
my %hash;
tie( %hash, "Tie::Hash::Stack" ); # Ties the hash
$hash{ 1 } = "one";
$hash{ 2 } = "two";
$hash{ 3 } = "three";
push_hash %hash; # Pushes a new hash on the stack
$hash{ 2 } = "II"; # $hash{ 2 } now II
$hash{ 4 } = "IV";
push_hash %hash;
$hash{ 3 } = "9/3"; # $hash{ 3 } now 9/3
$hash{ 5 } = "10/2";
pop_hash %hash; # $hash{ 3 } now three;
delete $hash{ 2 }; # $hash{ 2 } now undefed;
my %merged = merge_hash %hash; # ( 1=>one, 3=>three, 4=>IV )
Tie::Hash::Stack allows one to tie a hash to a data structure that is composed of an ordered (FILO) sequence of hashes; hash values are always set on the newest hash of the stack, and are retrieved from the hash that contains the requested that is newest on the stack. The stack can be manipulated to add or remove these hashes. This type of structure is good when one is collecting data in stages with the possibility of having to "back up" to previous stages.
Download (0.006MB)
Added: 2007-02-15 License: Perl Artistic License Price:
982 downloads
Java Network Stack 1.1
Java Network Stack provides a Java library for research oriented network programming. more>>
Java Network Stack provides a Java library for research oriented network programming.
Java Network Stack is a library used by the DIMES project to create new internet measurements. It provides a clean API for packet manipulation, send, receive, filter, and analysis. It is a unification of raw socket capabilities, MAC level networkingm, and IPv6 capabilities.
<<lessJava Network Stack is a library used by the DIMES project to create new internet measurements. It provides a clean API for packet manipulation, send, receive, filter, and analysis. It is a unification of raw socket capabilities, MAC level networkingm, and IPv6 capabilities.
Download (1.5MB)
Added: 2007-04-25 License: LGPL (GNU Lesser General Public License) Price:
918 downloads
OpenSS7 0.9.2.F
OpenSS7 is an opensource development project to provide robust and GPLed SS7 stack for Linux and other UN*X operation systems. more>>
OpenSS7 is an opensource development project to provide robust and GPLed SS7 stack for Linux and other UN*X operation systems.
Perhaps we should have called it LinuxSS7, or SS7-For-The-Common-Man, or SS7-For-The-Rest-Of-Us, but were kinda attached to the name OpenSS7 as this is an opensource project.
Project Purpose
The purpose of the OpenSS7 project is to attempt to address the following impediments to the widespread use of SS7 both inside and outside the carrier community: Expense, Complexity, Collaboration, Certification, Core Competency and Expertise.
Project Background
Lists and describes some of the significant turning points in the OpenSS7 Project. These are just the highlights.
Project Mandate
Mandate of the OpenSS7 Project: build an SS7 stack.
Project Scope
Lists and describes what components are considered within the scope of the project and which are not.
Project Objectives
Lists and describes the specific objectives of the OpensSS7 Project.
Enhancements:
- The SCTP, STREAMS, and ISDN components were updated.
<<lessPerhaps we should have called it LinuxSS7, or SS7-For-The-Common-Man, or SS7-For-The-Rest-Of-Us, but were kinda attached to the name OpenSS7 as this is an opensource project.
Project Purpose
The purpose of the OpenSS7 project is to attempt to address the following impediments to the widespread use of SS7 both inside and outside the carrier community: Expense, Complexity, Collaboration, Certification, Core Competency and Expertise.
Project Background
Lists and describes some of the significant turning points in the OpenSS7 Project. These are just the highlights.
Project Mandate
Mandate of the OpenSS7 Project: build an SS7 stack.
Project Scope
Lists and describes what components are considered within the scope of the project and which are not.
Project Objectives
Lists and describes the specific objectives of the OpensSS7 Project.
Enhancements:
- The SCTP, STREAMS, and ISDN components were updated.
Download (63.9MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
865 downloads
LAMPStack 1.0 beta-1
the deployment of Open Source web stacks on Linux. more>> LAMPStack is an easy to install software platform that greatly simplifies the deployment of Open Source web stacks on Linux. It includes ready-to-run versions of Apache, MySQL, PHP, phpMyAdmin and required dependencies and installs in minutes.
FEATURES
- Easy to Install
BitNami Stacks are built with one goal in mind: to make it as easy as
possible to install open source software. Our installers completely automate
the process of installing and configuring all of the software included in
each Stack, so you can have everything up and running in just a few clicks.
- Independent
BitNami Stacks are completely self-contained, and therefore do not interfere
with any software already installed on your system. For example, you can
upgrade your systems MySQL or Apache Tomcat without fear of breaking your
BitNami Stack.
- Integrated
By the time you click the finish button on the installer, the whole stack
will be integrated, configured and ready to go.
- Relocatable
BitNami Stacks can be installed in any directory. This allows you to have
multiple instances.<<less
Download (60.32MB)
Added: 2009-04-13 License: Freeware Price: Free
194 downloads
BitNami WordPress Stack for Linux 2.6.0
designed to make the internet publishing experience easy. more>> <<less
Download (61.67MB)
Added: 2009-04-12 License: Freeware Price: Free
195 downloads
Tess 0.40
Tess is a C++ library that helps automate final assembly of tedious graphic design tasks. more>>
Tess is a C++ library that helps automate final assembly of tedious graphic design tasks (e.g. from photoshop or gimp), such as conjuring piles of web page-specific navigation features.
The project can composite an arbitrary stack of RGBA images, draw antialiased TrueType text (via FreeType), and generate a few shapes and effects. It groks PPM and PAM files, and includes a Perl binding.
<<lessThe project can composite an arbitrary stack of RGBA images, draw antialiased TrueType text (via FreeType), and generate a few shapes and effects. It groks PPM and PAM files, and includes a Perl binding.
Download (0.028MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
866 downloads
BitNami Subversion Stack for Linux 1.4.6
rapidly replacing open source and commercial solutions around the world. more>> BitNami Subversion Stack is an easy to use installer for Subversion, which has rapidly become the version control standard and it is rapidly replacing open source and commercial solutions around the world. Subversion enables globally distributed software development teams to efficiently version and share source code. The open source Subversion project was started in early 2000 by CollabNet, the primary corporate sponsor of Subversion.
Key Capabilities:
-Versioned directories
-Atomic commits
-Efficient handling of binary files
-Quick branching and tagging
-Directory and file meta data
-Natively client-server
-Minimal server and network requirements
-Low admin overhead
-Good security
Subversion has rapidly become the version control standard and it is rapidly replacing open source and commercial solutions around the world. Subversion enables globally distributed software development teams to efficiently version and share source code. The open source Subversion project was started in early 2000 by CollabNet, the primary corporate sponsor of Subversion.
The BitNami Subversion is an installer that greatly simplifies the installation of a Subversion server and its runtime dependencies. Subversion is distributed Apache/BSD-style open source license. Please see the appendix for the specific licenses of all open source components included.<<less
Download (11.51MB)
Added: 2009-04-03 License: Freeware Price: Free
204 downloads
PackAttack 0.5.1
PackAttack is a clone of Stack Attack, a tetris-like game. more>>
PackAttack project is a clone of "Stack Attack", a tetris-like game.
PackAttack is a game which is a little bit like tetris. The game play involves moving falling boxes into a row in order to get the best high score.
The game is a clone of the "Stack Attack" game which is found on some cellular phones.
<<lessPackAttack is a game which is a little bit like tetris. The game play involves moving falling boxes into a row in order to get the best high score.
The game is a clone of the "Stack Attack" game which is found on some cellular phones.
Download (0.21MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
1050 downloads

BitNami JasperServer Stack for Linux 3.0.0
part of the JasperSoft business intelligence suite, built by the developers more>> JasperServer is part of the JasperSoft business intelligence suite, built by the developers of JasperReports, the leading open source reporting engine. It provides a Web and Web services based environment for reporting, data analysis (OLAP), and data integration.
JasperServer is a high-performance report server and business intelligence platform designed for developers and businesses. Deploy JasperServer when:
-Users need to create their own ad hoc queries, reports, charts,
-crosstabs, and dashboards It becomes necessary to securely store, schedule, distribute, share, drill-down, or interact with reports.
The BitNami JasperServer Stack is an installer that greatly simplifies the installation of JasperServer and runtime dependencies. It includes ready-to-run versions of Apache-Tomcat, MySQL and Java. JasperServer Stack is distributed for free under the Apache 2.0 license. Please see the appendix for the specific licenses of all Open Source components included.
FEATURES
- Easy to Install
BitNami Stacks are built with one goal in mind: to make it as easy as possible to install open source software. Our installers completely automate the process of installing and configuring all of the software included in each Stack, so you can have everything up and running in just a few clicks.
- Independent
BitNami Stacks are completely self-contained, and therefore do not interfere with any software already installed on your system. For example, you can upgrade your systems MySQL or Apache Tomcat without fear of breaking your BitNami Stack.
- Integrated
By the time you click the finish button on the installer, the whole stack will be integrated, configured and ready to go.
- Relocatable
BitNami Stacks can be installed in any directory. This allows you to have multiple instances of the same stack, without them interfering with each other.<<less
Download (123.25MB)
Added: 2009-04-28 License: Freeware Price: Free
182 downloads

BitNami Mantis Stack for Linux 1.1.2.0
greatly simplifies the installation of Mantis and runtime dependencies more>> BitNami Mantis Stack is an easy to use installer for Mantis, which is free popular web-based bug-tracking system, written in the PHP scripting language and works with MySQL, MS SQL, and PostgreSQL databases and a webserver.
The BitNami Mantis Stack is an installer that greatly simplifies theinstallation of Mantis and runtime dependencies. It includes ready-to-runversions of Apache, MySQL and PHP. Mantis Stack is distributed for freeunder the Apache 2.0 license. Please see the appendix for the specificlicenses of all open source components included.
FEATURES
- Easy to Install
BitNami Stacks are built with one goal in mind: to make it as easy aspossible to install open source software. Our installers completely automatethe process of installing and configuring all of the software included ineach Stack, so you can have everything up and running in just a few clicks.
- Independent
BitNami Stacks are completely self-contained, and therefore do not interfere with any software already installed on your system. For example, you can upgrade your systems MySQL or Apache without fear of breaking your BitNami Stack.
- Integrated
By the time you click the finish button on the installer, the whole stack will be integrated, configured and ready to go.
- Relocatable
BitNami Stacks can be installed in any directory. This allows you to have multiple instances of the same stack, without them interfering with each other.<<less
Download (63.10MB)
Added: 2009-04-04 License: Freeware Price: Free
205 downloads

BitNami Alfresco Stack for Linux 2.1.0.7
Enterprise Content Management (ECM) system featuring Document Management more>> BitNami Alfresco Stack is an easy to use installer for Alfresco, which is an Enterprise Content Management (ECM) system featuring Document Management, Web Content Management, Collaboration Management, Records Management and Image Management.
The BitNami Project was created to help spread the adoption of freely available, high quality, open source web applications. BitNami aims to make it easier than ever to discover, download and install Open Source software such as document and content management systems, wikis and blogging software.
The BitNami Alfresco Stack is an installer that greatly simplifies the installation of Alfresco and runtime dependencies. It includes ready-to-run versions of Apache-Tomcat, MySQL and Java(tm) runtime. Alfresco Stack is distributed for free under the Apache 2.0 license. Please see the appendix for the specific licenses of all Open Source components included.
FEATURES
- Easy to Install
BitNami Stacks are built with one goal in mind: to make it as easy as possible to install open source software. Our installers completely automate the process of installing and configuring all of the software included in each Stack, so you can have everything up and running in just a few clicks.
- Independent
BitNami Stacks are completely self-contained, and therefore do not interfere with any software already installed on your system. For example, you can upgrade your systems MySQL or Apache Tomcat without fear of breaking your BitNami Stack.
- Integrated
By the time you click the finish button on the installer, the whole stack will be integrated, configured and ready to go.
- Relocatable
BitNami Stacks can be installed in any directory. This allows you to have multiple instances of the same stack, without them interfering with each other.<<less
Download (269.55MB)
Added: 2009-04-01 License: Freeware Price: Free
205 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ss7 stack search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed