Skip to content

Commit 6dc864a

Browse files
committed
Update for 1.0.9-M3
1 parent 4eb1b46 commit 6dc864a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.0.9-M2</version>
6+
<version>1.0.9-M3</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-client</artifactId>

src/main/java/org/red5/client/net/rtmpt/RTMPTClientConnection.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@
1919
package org.red5.client.net.rtmpt;
2020

2121
import org.apache.mina.core.buffer.IoBuffer;
22-
import org.red5.server.net.rtmp.codec.RTMP;
22+
import org.red5.server.api.IConnection;
2323

2424
public class RTMPTClientConnection extends BaseRTMPTConnection {
2525

2626
public RTMPTClientConnection() {
27-
super(PERSISTENT);
28-
this.state = new RTMP();
27+
super(IConnection.Type.PERSISTENT.name().toLowerCase());
2928
}
3029

3130
@Override

0 commit comments

Comments
 (0)