privatize session.queueStreamFrame

ref #60
This commit is contained in:
Lucas Clemente
2016-05-15 18:49:01 +02:00
parent 028615b8f0
commit 2fb42afc8a
4 changed files with 18 additions and 18 deletions

View File

@@ -523,8 +523,8 @@ func (s *Session) sendPacket() error {
return nil
}
// QueueStreamFrame queues a frame for sending to the client
func (s *Session) QueueStreamFrame(frame *frames.StreamFrame) error {
// queueStreamFrame queues a frame for sending to the client
func (s *Session) queueStreamFrame(frame *frames.StreamFrame) error {
s.packer.AddStreamFrame(*frame)
s.scheduleSending()
return nil