CafeSip: Jiplet 0.2.0 released new & improved admin console


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News CafeSip: Jiplet 0.2.0 released new & improved admin console
# 1  
Old 01-29-2009
CafeSip: Jiplet 0.2.0 released new & improved admin console

Session Initialtion Protocol (SIP) is widely used for telephone services over the Internet. CafeSip provides a suite of open-source tools and applications for creating customized SIP services and applications using the Java.

ImageImage

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Help with AT&T UNIX SYSTEM V Version 4 Console Login

Hello I install AT&T UNIX System V Release 4 Version 2.1 (3.5) on Emulator Bochs 2.6.8 here I done with all Base .img file upload after uploading 10 the base img file System take restart and after that System ask for console Login. which is as root and password set by me. But it will NOT allow... (7 Replies)
Discussion started by: Akshay Nalange
7 Replies

2. Shell Programming and Scripting

[Shell/Perl(?)] Prepending timestamps to console output & writing results to a file

I do a lot of TSM work and I embarked on what I thought would be an easy task, and I'd be very happy for any input to save the pounding my keyboard is receiving :] By default, the output of TSM's console has no timestamping, making it hard to sort through accurately. This puts my console into... (5 Replies)
Discussion started by: Vryali
5 Replies

3. Shell Programming and Scripting

Enhanced partition copy script (new & improved!)

This is now a larger script than I would customarily post. But many folks have become accustom to getting it off this forum. Every couple of years I update my favorite scripts. This script is one that I use regularly and have posted older versions every couple of years. I noticed that it has... (3 Replies)
Discussion started by: jwzumwalt
3 Replies

4. Shell Programming and Scripting

Tailing new log file & echo the string on console

Guys, I do have a script that runs to take the server out from network, after running the script it is writing the new log file{outFile} in to directory . Now what i need is my script should tail the last modified file{outFile} & search the string {Server Status} ans should echo the same at the... (0 Replies)
Discussion started by: raghunsi
0 Replies

5. Solaris

Solaris 9 & Netra 210 Console Problems

Have a Netra 210 server running Solaris 9 and Avaya CMS software and we redirected the local console to the remote console and now can't dial into the remote console. Can't get back to the local console either. So we are "locked out" and need help with any tips on how to reset the remote console... (3 Replies)
Discussion started by: drewmich
3 Replies

6. Debian

misc : console & pakage management

Two unrelated questions here: 1/ In debian, is it possible to change the font and resolution of the console (not xterm)? 2/ still in debian, how can you know what packages have been installed ? I'm thinking to something similar to pkg_info on FreeBSD. thx. (1 Reply)
Discussion started by: jad
1 Replies

7. UNIX for Dummies Questions & Answers

How do i access (mount, read & write) a floppy disk from the console, not being root?

welll, the title quite explains what i want to do thanks for your time! (4 Replies)
Discussion started by: kfaday
4 Replies
Login or Register to Ask a Question
sip_hold_msg(3SIP)				   Session Initiation Protocol Library Functions				sip_hold_msg(3SIP)

NAME
sip_hold_msg, sip_free_msg - adds and removes a reference from a SIP message SYNOPSIS
cc [ flag ... ] file ... -lsip [ library ... ] #include <sip.h> void sip_hold_msg(sip_msg_t sip_msg); void sip_free_msg(sip_msg_t sip_msg); DESCRIPTION
The sip_hold_msg() function adds a reference to the SIP message passed as the argument. The reference is used to prevent the SIP message from being freed when in use. The sip_free_msg() function is used to remove an added reference on the SIP message passed as the argument. If this is the last reference on the SIP message (i.e. the number of references on the SIP message is 0), the SIP message is destroyed and associated resources freed. Freeing a SIP message does not set the sip_msg pointer to NULL. Applications should not expect the pointer to a freed SIP message to be NULL. RETURN VALUES
The value of errno is not changed by these calls in the event of an error. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
libsip(3LIB) SunOS 5.11 25 Jan 2007 sip_hold_msg(3SIP)