Skip to content
Snippets Groups Projects
Commit 802f945b authored by Richard Alam's avatar Richard Alam
Browse files

- add bw mon options and some string constants

parent ce57e583
No related branches found
No related tags found
No related merge requests found
package org.bigbluebutton.core.model
{
import org.bigbluebutton.core.Options;
public class BandwidthMonOptions extends Options
{
[Bindable]
public var server:String = "";
[Bindable]
public var application:String = "";
public function BandwidthMonOptions()
{
name = "bwMon";
}
}
}
\ No newline at end of file
package org.bigbluebutton.util
{
public class ConnUtil
{
public static const RTMPS: String = "rtmps";
public static const RTMPT: String = "rtmpt";
public static const RTMP: String = "rtmp";
public static const PROXY_NONE: String = "none";
public static const PROXY_BEST: String = "best";
public static function parseRTMPConn(appURL: String):Array {
var pattern:RegExp = /(?P<protocol>.+):\/\/(?P<server>.+)\/(?P<app>.+)/;
var result:Array = pattern.exec(appURL);
return result;
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment