This commit is contained in:
Jason Coene
2013-06-15 16:30:37 -05:00
parent 948503d82a
commit bceee69838
3 changed files with 0 additions and 3 deletions

View File

@@ -41,7 +41,6 @@ type Client struct {
func NewClient(url string) (c *Client) {
c = &Client{
url: url,
rateLimit: DEFAULT_RATE_LIMIT,
amfExternalHandlers: make(map[string]amf.ExternalHandler),
}

View File

@@ -2,7 +2,6 @@ package rtmp
import (
"io"
"time"
)
func (c *Client) sendLoop() {

View File

@@ -50,5 +50,4 @@ const (
const (
DEFAULT_CHUNK_SIZE = uint32(128)
DEFAULT_WINDOW_SIZE = uint32(2500000)
DEFAULT_RATE_LIMIT = uint32(10000)
)