http://chan-sccp.berlios.de/ 20050713 ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 I didn't have a spare 7960 to use this week, so maybe some line issue is still present. - fixed a memory leak on database updates (dnd, cfwd*) - fixed old memory leak on unload (now unload chan_sccp.so and load chan_sccp.so work. It does reload the config when asterisk is running) - socket stuff has been totally rewritten - added sccp show sessions (cli command) - modified the output of sccp show channels (use it to understand what chan_sccp is doing with channels) - rewrite of asterisk codecs 2 skinny translation - modified the calls hangup system (more stable) - minor changes on the native transfer (now the call on a failed transfer status will ring back when you put onhook the phone - useful for no display phones) - many minor changes How to build: wget ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 tar xvjf chan_sccp-20050713.tar.bz2 cd chan_sccp-20050713 make clean; make install modules.conf load = chan_sccp.so noload = chan_skinny.so edit sccp.conf if you have compile errors try this: rm /usr/include/asterisk/* cd asterisk make upgrade cd chan_sccp-20050713 make clean; make install
Thanks for the new version!!!! Is there a place I can go that documents all the options in the sccp.conf file? Thank you again for all your work, - Andre -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com]On Behalf Of Sergio Chersovani Sent: Wednesday, July 13, 2005 2:21 PM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] chan_sccp new release http://chan-sccp.berlios.de/ 20050713 ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 I didn't have a spare 7960 to use this week, so maybe some line issue is still present. - fixed a memory leak on database updates (dnd, cfwd*) - fixed old memory leak on unload (now unload chan_sccp.so and load chan_sccp.so work. It does reload the config when asterisk is running) - socket stuff has been totally rewritten - added sccp show sessions (cli command) - modified the output of sccp show channels (use it to understand what chan_sccp is doing with channels) - rewrite of asterisk codecs 2 skinny translation - modified the calls hangup system (more stable) - minor changes on the native transfer (now the call on a failed transfer status will ring back when you put onhook the phone - useful for no display phones) - many minor changes How to build: wget ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 tar xvjf chan_sccp-20050713.tar.bz2 cd chan_sccp-20050713 make clean; make install modules.conf load = chan_sccp.so noload = chan_skinny.so edit sccp.conf if you have compile errors try this: rm /usr/include/asterisk/* cd asterisk make upgrade cd chan_sccp-20050713 make clean; make install _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Hi, I have a lot of compile problems with your version, because I have to use gcc-2.95. The problem is, that you should decleare variables first. gcc-3.x accept something like this: void sccp_channel_set_calledparty(sccp_channel_t * c, char *name, char *number) { if (!c) return; sccp_device_t * d = c->device; but gcc-2.95 doesn't Correct syntax would be: void sccp_channel_set_calledparty(sccp_channel_t * c, char *name, char *number) { sccp_device_t * d; if (!c) return; d = c->device; I can send you my diffs, if you like. regards Jens Quoting Sergio Chersovani <mlists@c-net.it>:> http://chan-sccp.berlios.de/ > > > 20050713 ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 > > I didn't have a spare 7960 to use this week, so maybe some line issue is > still present. > - fixed a memory leak on database updates (dnd, cfwd*) > - fixed old memory leak on unload (now unload chan_sccp.so and load > chan_sccp.so work. It does reload the config when asterisk is running) > - socket stuff has been totally rewritten > - added sccp show sessions (cli command) > - modified the output of sccp show channels (use it to understand what > chan_sccp is doing with channels) > - rewrite of asterisk codecs 2 skinny translation > - modified the calls hangup system (more stable) > - minor changes on the native transfer (now the call on a failed > transfer status will ring back when you put onhook the phone - useful > for no display phones) > - many minor changes > > How to build: > > wget ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 > > tar xvjf chan_sccp-20050713.tar.bz2 > cd chan_sccp-20050713 > make clean; make install > > modules.conf > load = chan_sccp.so > noload = chan_skinny.so > > edit sccp.conf > > if you have compile errors try this: > > rm /usr/include/asterisk/* > cd asterisk > make upgrade > cd chan_sccp-20050713 > make clean; make install > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
Hi, I have found an new problem. I use a 7960+7914 and 3 lines configured for testing, but only one line is shown on the 7960. The first button on the 7914, which should also be a line button is empty. Also the second on the 7960. This one I changed in sccp_protocols.h from SKINNY_BUTTONTYPE_UNUSED to SKINNY_BUTTONTYPE_LINE. What's wrong? This feature was already working with the old sourceforge version. regards Jens> http://chan-sccp.berlios.de/ > > > 20050713 ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 > > I didn't have a spare 7960 to use this week, so maybe some line issue is > still present. > - fixed a memory leak on database updates (dnd, cfwd*) > - fixed old memory leak on unload (now unload chan_sccp.so and load > chan_sccp.so work. It does reload the config when asterisk is running) > - socket stuff has been totally rewritten > - added sccp show sessions (cli command) > - modified the output of sccp show channels (use it to understand what > chan_sccp is doing with channels) > - rewrite of asterisk codecs 2 skinny translation > - modified the calls hangup system (more stable) > - minor changes on the native transfer (now the call on a failed > transfer status will ring back when you put onhook the phone - useful > for no display phones) > - many minor changes > > How to build: > > wget ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050713.tar.bz2 > > tar xvjf chan_sccp-20050713.tar.bz2 > cd chan_sccp-20050713 > make clean; make install > > modules.conf > load = chan_sccp.so > noload = chan_skinny.so > > edit sccp.conf > > if you have compile errors try this: > > rm /usr/include/asterisk/* > cd asterisk > make upgrade > cd chan_sccp-20050713 > make clean; make install > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
http://chan-sccp.berlios.de/ 20050715 ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050715.tar.bz2 - cisco 7936 initial support - gcc 2.95 compatibility - fixed a removing session issue (introduced with the new socket code) - minor code cleanups - added (very) experimental support to CALL PARK. The call park stuff is not compiled by default (and you need to load => res_features.so) . To try it: make clean CFLAGS=-DCS_SCCP_PARK make install How to build: wget ftp://ftp.berlios.de/pub/chan-sccp/chan_sccp-20050715.tar.bz2 tar xvjf chan_sccp-20050715.tar.bz2 cd chan_sccp-20050715 make clean; make install modules.conf load = chan_sccp.so noload = chan_skinny.so edit sccp.conf if you have compile errors try this: rm /usr/include/asterisk/* rm /usr/lib/asterisk/modules/* cd asterisk make upgrade cd chan_sccp-20050715 make clean; make install
20050902 http://chan-sccp.berlios.de/ - added support for call forward (all and busy) The call forward buttons are available on the ringout state (it is because I need to verify that the extension exists) to activate it and on the offhook state to deactivate it. There is a problem with the cisco firmware. It can just display the first forwarded line on the top LCD. So if you activate the call forward on the 2nd line it does stop to show the forward icon. They should be show the forward on the icon next to the button. We will wait their new firmware. The forward state is saved to the database and it will be restored when the phone does register after a shutdown. Take a look to the conf/sccp.conf for the syntax. - added "private" softkey on the offhook state. Before you dial, hit the private softkey, the chan_sccp will not send the called id infos to the sccp phones that are monitoring (hint) your line. - added "trnsfvm" softkey on the ringing state. It could redirect the incoming call to a different extension in the same context of the line. Useful for voicemail divert. Take a look to the conf/sccp.conf for the syntax - Added support for the 2nd 7914 expansion module. I can't test it, it should work. - fixed a redial issue on 7910 - minor fixes Sergio