Re: [Asterisk-java-users] ExtensionStatus codes
Brought to you by:
srt
From: Stefan R. <ste...@re...> - 2008-06-25 02:49:29
|
Jesus Mogollon wrote: > Does anybody know what the "status" number mean within the context of > ExtensionStatusEvent? I know 8 is ringing, 1 is INUSE but I can't infer > the others. I know I saw a table a while ago but I can't find it anywhere... They are defined in ExtensionStatusEvent: /** * No device INUSE or BUSY. */ public static final int NOT_INUSE = 0; /** * One or more devices INUSE. */ public static final int INUSE = 1 << 0; /** * All devices BUSY. */ public static final int BUSY = 1 << 1; /** * All devices UNAVAILABLE/UNREGISTERED. */ public static final int UNAVAILABLE = 1 << 2; /** * One or more devices RINGING. */ public static final int RINGING = 1 << 3; =Stefan > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > > > ------------------------------------------------------------------------ > > _______________________________________________ > Asterisk-java-users mailing list > Ast...@li... > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users -- reuter network consulting Neusser Str. 110 50760 Koeln Germany Telefon: +49 221 1305699-0 Telefax: +49 221 1305699-90 E-Mail: ste...@re... Jabber: ste...@re... WWW: http://www.reucon.com Steuernummern 215/5140/1791 USt-IdNr. DE220701760 |