diff --git a/.vs/Crunchyroll Downloader/v15/.suo b/.vs/Crunchyroll Downloader/v15/.suo index f94a80f..ba7fe2f 100644 Binary files a/.vs/Crunchyroll Downloader/v15/.suo and b/.vs/Crunchyroll Downloader/v15/.suo differ diff --git a/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide b/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide index b0b3bdb..1eac41d 100644 Binary files a/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide and b/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide differ diff --git a/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-shm b/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-shm index ec1931b..6bea590 100644 Binary files a/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-shm and b/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-shm differ diff --git a/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-wal b/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-wal index fb9c352..a75509a 100644 Binary files a/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-wal and b/.vs/Crunchyroll Downloader/v15/Server/sqlite3/storage.ide-wal differ diff --git a/Crunchyroll Downloader/Anime_Add.vb b/Crunchyroll Downloader/Anime_Add.vb index 85e0ce4..68ecbf3 100644 --- a/Crunchyroll Downloader/Anime_Add.vb +++ b/Crunchyroll Downloader/Anime_Add.vb @@ -1,6 +1,7 @@ Imports Microsoft.Win32 Imports System.Net - +Imports Gecko +Imports System.IO Public Class Anime_Add Public Mass_DL_Cancel As Boolean = False Public List_DL_Cancel As Boolean = False @@ -22,6 +23,11 @@ Public Class Anime_Add End Sub Private Sub Anime_Add_Load(sender As Object, e As EventArgs) Handles MyBase.Load + Try + Main.waveOutSetVolume(0, 0) + Catch ex As Exception + + End Try Me.Location = New Point(Main.Location.X + Main.Width / 2 - Me.Width / 2, Main.Location.Y + Main.Height / 2 - Me.Height / 2) TextBox4.Text = Main.Pfad @@ -155,19 +161,19 @@ Public Class Anime_Add #End Region - Private Sub pictureBox3_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox3.MouseEnter + Private Sub PictureBox3_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox3.MouseEnter pictureBox3.BackColor = SystemColors.Control End Sub - Private Sub pictureBox3_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox3.MouseLeave + Private Sub PictureBox3_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox3.MouseLeave pictureBox3.BackColor = Color.Transparent End Sub - Private Sub pictureBox3_Click(sender As Object, e As EventArgs) Handles pictureBox3.Click + Private Sub PictureBox3_Click(sender As Object, e As EventArgs) Handles pictureBox3.Click Me.Close() End Sub - Private Sub pictureBox4_Click(sender As Object, e As EventArgs) Handles pictureBox4.Click + Private Sub PictureBox4_Click(sender As Object, e As EventArgs) Handles pictureBox4.Click 'pictureBox4.Enabled = False Main.RemoveFinishedTask() If groupBox1.Visible = True Then @@ -202,9 +208,28 @@ Public Class Anime_Add GeckoFX.WebBrowser1.Navigate(textBox1.Text) Else 'If CBool(InStr(textBox1.Text, "vrv.co")) Then If MessageBox.Show("This in NOT a Crunchyroll URL, try anyway?", "confirm?", MessageBoxButtons.YesNo, MessageBoxIcon.Question) = DialogResult.Yes Then + Dim FileLocation As DirectoryInfo = New DirectoryInfo(Application.StartupPath) + Dim CurrentFile As String = Nothing + For Each File In FileLocation.GetFiles() + If InStr(File.FullName, "log.txt") Then + CurrentFile = File.FullName + Exit For + End If + Next + If CurrentFile = Nothing Then + Else + Dim logFileStream As FileStream = New FileStream(CurrentFile, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite) + Dim logFileReader As StreamReader = New StreamReader(logFileStream) + logFileStream.SetLength(0) + logFileReader.Close() + logFileStream.Close() + End If + Main.LoggingBrowser = True + GeckoPreferences.Default("logging.config.LOG_FILE") = "log.txt" + GeckoPreferences.Default("logging.nsHttp") = 3 GeckoFX.WebBrowser1.Navigate(textBox1.Text) StatusLabel.Text = "Status: looking for non CR video file" - 'System.Threading.Thread.Sleep(20000) + Main.b = False Else Exit Sub pictureBox4.Enabled = True @@ -214,6 +239,7 @@ Public Class Anime_Add 'MsgBox(Main.URL_Invaild, MsgBoxStyle.OkOnly) End If Catch ex As Exception + MsgBox(ex.ToString) Main.b = True MsgBox(Main.URL_Invaild, MsgBoxStyle.OkOnly) End Try @@ -237,7 +263,7 @@ Public Class Anime_Add comboBox3.Enabled = False ComboBox1.Enabled = False End If - ElseIf groupBox3.Visible = True Then + ElseIf GroupBox3.Visible = True Then GroupBox3.Visible = False groupBox2.Visible = False groupBox1.Visible = True @@ -263,7 +289,7 @@ Public Class Anime_Add End If End Sub - Private Sub pictureBox4_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox4.MouseEnter + Private Sub PictureBox4_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox4.MouseEnter If Mass_DL_Cancel = True Then pictureBox4.Image = My.Resources.add_mass_running_cancel_hover ElseIf List_DL_Cancel = True Then @@ -275,7 +301,7 @@ Public Class Anime_Add End Sub - Private Sub pictureBox4_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox4.MouseLeave + Private Sub PictureBox4_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox4.MouseLeave If Mass_DL_Cancel = True Then pictureBox4.Image = My.Resources.add_mass_running_cancel ElseIf List_DL_Cancel = True Then @@ -286,7 +312,7 @@ Public Class Anime_Add End Sub - Private Sub textBox1_Click(sender As Object, e As EventArgs) Handles textBox1.Click + Private Sub TextBox1_Click(sender As Object, e As EventArgs) Handles textBox1.Click If textBox1.Text = "URL" Then textBox1.Text = Nothing End If @@ -386,7 +412,7 @@ Public Class Anime_Add End Sub - Private Sub textBox2_Click(sender As Object, e As EventArgs) Handles textBox2.Click + Private Sub TextBox2_Click(sender As Object, e As EventArgs) Handles textBox2.Click If textBox2.Text = "Name of the Anime" Then textBox2.Text = Nothing End If diff --git a/Crunchyroll Downloader/Crunchyroll Downloader.vbproj b/Crunchyroll Downloader/Crunchyroll Downloader.vbproj index 77901f0..163382b 100644 --- a/Crunchyroll Downloader/Crunchyroll Downloader.vbproj +++ b/Crunchyroll Downloader/Crunchyroll Downloader.vbproj @@ -94,8 +94,9 @@ ..\packages\Geckofx60.32.60.0.39\lib\net45\Geckofx-Winforms.dll - - ..\Helpers.dll + + False + E:\Projects\AsyncWorkerVB08\Helpers\bin\x86\Release\Helpers.dll @@ -292,6 +293,9 @@ + + + diff --git a/Crunchyroll Downloader/GeckoFX.vb b/Crunchyroll Downloader/GeckoFX.vb index 1c20c27..6417047 100644 --- a/Crunchyroll Downloader/GeckoFX.vb +++ b/Crunchyroll Downloader/GeckoFX.vb @@ -4,56 +4,25 @@ Imports System.IO Imports Gecko.Cache Imports System.ComponentModel Imports System.Threading +Imports System.Net +Imports System.Net.WebUtility Public Class GeckoFX Public keks As String = Nothing Public c As Boolean = True Dim t As Thread - Private Sub GeckoWebBrowser1_DocumentCompleted(sender As Object, e As EventArgs) Handles WebBrowser1.DocumentCompleted - 'My.Computer.Clipboard.SetText(WebBrowser1.Document.Body.InnerHtml) - 'Try - ' Dim ads_add As String = My.Resources.ads_preroll - ' For Each c As String In WebBrowser1.Document.Body.InnerHtml - ' If c = My.Resources.ads_midroll Then - ' ads_add = ads_add + My.Resources.ads_preroll - ' End If - ' Next - ' WebBrowser1.Document.Body.InnerHtml = WebBrowser1.Document.Body.InnerHtml.Replace(My.Resources.ads_preroll, ads_add) - 'Catch ex As Exception - 'End Try - 'My.Computer.Clipboard.SetText(WebBrowser1.Document.Body.InnerHtml) + Private Sub GeckoWebBrowser1_DocumentCompleted(sender As Object, e As EventArgs) Handles WebBrowser1.DocumentCompleted If Main.LoginOnly = "US_UnBlock" Then Main.LoginOnly = "US_UnBlocck_Wait2nd" - 'Main.LoginOnly = "US_UnBlock_Wait" - 'My.Computer.Clipboard.SetText(WebBrowser1.Url.ToString + vbNewLine + "before" + vbNewLine + vbNewLine + WebBrowser1.Document.Cookie) - 'einstellungen.RichTextBox1.Text = WebBrowser1.Url.ToString + vbNewLine + "before" + vbNewLine + vbNewLine + WebBrowser1.Document.Cookie - 'WebBrowser1.Document.Cookie = "" - 'WebBrowser1.Navigate("javascript:document.cookie = 'session_id=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';") - 'WebBrowser1.Navigate("javascript:$$") - 'WebBrowser1.ExecuteCommand("alert(document.cookie);") - 'WebBrowser1.Document.Body.InnerHtml = WebBrowser1.Document.Body.InnerHtml + "" - 'einstellungen.RichTextBox1.Text = einstellungen.RichTextBox1.Text + vbNewLine + WebBrowser1.Url.ToString + vbNewLine + "after" + vbNewLine + vbNewLine + WebBrowser1.Document.Cookie - 'My.Computer.Clipboard.SetText(before + vbNewLine + WebBrowser1.Url.ToString + vbNewLine + "after" + vbNewLine + vbNewLine + WebBrowser1.Document.Cookie) Try - 'Dim cookieName As String = "session_id" - 'Dim cookieValue As String = keks - 'WebBrowser1.Document.Cookie = String.Format("{0}={1}; {2}", cookieName, cookieValue, WebBrowser1.Document.Cookie) - 'Dim cookieName2 As String = "sess_id" - 'WebBrowser1.Document.Cookie = String.Format("{0}={1}; {2}", cookieName2, cookieValue, WebBrowser1.Document.Cookie) - 'Dim cookieFillName As String = "c_locale" - 'Dim cookieFillValue As String = "enUS" - 'WebBrowser1.Document.Cookie = String.Format("{0}={1}; {2}", cookieFillName, cookieFillValue, WebBrowser1.Document.Cookie) WebBrowser1.Navigate("javascript:document.cookie =" + Chr(34) + "session_id=" + keks + "; expires=Thu, 05 Jan 2021 00:00:00 UTC; path=/;" + Chr(34) + ";") Main.Pause(1) WebBrowser1.Navigate("javascript:document.cookie = " + Chr(34) + "sess_id=" + keks + "; expires=Thu, 05 Jan 2021 00:00:00 UTC; path=/;" + Chr(34) + ";") Main.Pause(1) WebBrowser1.Navigate("javascript:document.cookie = " + Chr(34) + "c_locale=enUS; expires=Thu, 05 Jan 2021 00:00:00 UTC; path=/;" + Chr(34) + ";") Main.Pause(1) - 'WebBrowser1.Navigate("javascript:alert(document.cookie);") - 'Main.Pause(2) WebBrowser1.Navigate("https://www.crunchyroll.com/") Main.LoginOnly = "US_UnBlock_Check" - 'WebBrowser1.Navigate("https://www.crunchyroll.com/") Catch ex As Exception End Try ElseIf Main.LoginOnly = "US_UnBlock_Wait" Then @@ -64,14 +33,9 @@ Public Class GeckoFX ElseIf Main.LoginOnly = "US_UnBlock_Check" Then Main.LoginOnly = "false" If CBool(InStr(WebBrowser1.Document.Body.OuterHtml, "Your detected location is United States of America.")) Then - 'MsgBox(keks + vbNewLine + WebBrowser1.Document.Cookie) MsgBox("unlock successful", MsgBoxStyle.Information) Me.Close() - 'MsgBox(WebBrowser1.Document.Cookie) Else - - 'MsgBox(WebBrowser1.Document.Cookie) - 'MsgBox(keks + vbNewLine + WebBrowser1.Document.Cookie) MsgBox("unlock failes", MsgBoxStyle.Exclamation) Me.Close() End If @@ -151,27 +115,141 @@ Public Class GeckoFX Me.Close() End If Else - If Main.UserBowser = False Then - 'My.Computer.Clipboard.SetText(WebBrowser1.Document.Body.OuterHtml) - 'If InStr(WebBrowser1.DocumentTitle, " - Watch on VRV") Then + If Main.b = False Then Main.WebbrowserURL = WebBrowser1.Url.ToString + Main.WebbrowserText = WebBrowser1.Document.Body.OuterHtml Main.WebbrowserTitle = WebBrowser1.DocumentTitle - WebBrowser1.Navigate("view-source:" + Main.WebbrowserURL) - Main.Pause(3) - If CBool(InStr(WebBrowser1.Document.Body.OuterHtml, ".m3u8")) Then - 'MsgBox("test3") - Main.WebbrowserText = WebBrowser1.Document.Body.OuterHtml - Main.b = True - t = New Thread(AddressOf Main.Grapp_non_CR) - t.Priority = ThreadPriority.Normal - t.IsBackground = True - t.Start() + Main.b = True + Main.UserBowser = True + For i As Integer = 20 To 0 Step -1 + Main.Pause(1) + Anime_Add.StatusLabel.Text = "Status: scanning network traffic " + Math.Abs(i).ToString + Next + Anime_Add.StatusLabel.Text = "Status: " + Dim FileLocation As DirectoryInfo = New DirectoryInfo(Application.StartupPath) + Dim CurrentFile As String = Nothing + For Each File In FileLocation.GetFiles() + If InStr(File.FullName, "log.txt") Then + CurrentFile = File.FullName + Exit For + End If + Next + Dim logFileStream As FileStream = New FileStream(CurrentFile, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite) + Dim logFileReader As StreamReader = New StreamReader(logFileStream) + Dim line As String = Nothing + Dim HTMLString As String = Nothing + line = logFileReader.ReadLine + + While (line IsNot Nothing) + line = logFileReader.ReadLine + If InStr(line, ".m3u8?") Then + If HTMLString = Nothing Then + HTMLString = line + Else + HTMLString = HTMLString + vbNewLine + line + End If + For i As Integer = 0 To 10 + line = logFileReader.ReadLine + If InStr(line, " Host: ") Then + HTMLString = HTMLString + vbNewLine + line + End If + Next + End If + End While + logFileReader.Close() + logFileStream.Close() + 'MsgBox(HTMLString) + If InStr(HTMLString, ".m3u8?") Then + Anime_Add.StatusLabel.Text = "Status: m3u8 found, trying to start the download" + Main.LoggingBrowser = False + GeckoPreferences.Default("logging.config.LOG_FILE") = "log.txt" + GeckoPreferences.Default("logging.nsHttp") = 0 + Dim URL As String = Nothing + Dim HTMLSplit() As String = HTMLString.Split(New String() {vbNewLine}, System.StringSplitOptions.RemoveEmptyEntries) + For i As Integer = 0 To HTMLSplit.Count - 1 + If InStr(HTMLSplit(i), ".m3u8?") Then + Dim URLPart2() As String = HTMLSplit(i).Split(New String() {" GET "}, System.StringSplitOptions.RemoveEmptyEntries) + Dim URLPart2Split2() As String = URLPart2(1).Split(New String() {" HTTP/"}, System.StringSplitOptions.RemoveEmptyEntries) + Dim URLPart1() As String = HTMLSplit(i + 1).Split(New String() {" Host: "}, System.StringSplitOptions.RemoveEmptyEntries) + Main.NonCR_URL = "https://" + URLPart1(1) + URLPart2Split2(0) + 'MsgBox(Main.NonCR_URL) + 'RichTextBox1.Text = RichTextBox1.Text + vbNewLine + URL_Final + t = New Thread(AddressOf Main.Grapp_non_CR) + t.Priority = ThreadPriority.Normal + t.IsBackground = True + t.Start() + Exit For + Me.Close() + End If + Next + Else + Anime_Add.StatusLabel.Text = "Status: no m3u8 found, analyzing HTML content" + WebBrowser1.Navigate("view-source:" + Main.WebbrowserURL) + Main.Pause(3) + If CBool(InStr(WebBrowser1.Document.Body.OuterHtml, ".m3u8")) Then +#Region "m3u8 suche" + Main.WebbrowserText = UrlDecode(WebBrowser1.Document.Body.OuterHtml) + If InStr(Main.WebbrowserText, ".m3u8?") Then + Else + Anime_Add.StatusLabel.Text = "Status: no m3u8 found" + Main.UserBowser = False + Me.Close() + Exit Sub + End If + Dim ii As Integer = 0 + Dim Video_URI_Master As String = Nothing + Dim Video_URI_Master_Split1 As String() = Main.WebbrowserText.Split(New String() {".m3u8?"}, System.StringSplitOptions.RemoveEmptyEntries) + Dim m3u8Link As String = Nothing + For i As Integer = 0 To Video_URI_Master_Split1.Count - 2 + Dim Video_URI_Master_Split_Top As String() = Video_URI_Master_Split1(i).Split(New String() {Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries) + Dim Video_URI_Master_Split_Bottom As String() = Video_URI_Master_Split1(i + 1).Split(New String() {Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries) + m3u8Link = Video_URI_Master_Split_Top(Video_URI_Master_Split_Top.Count - 1) + ".m3u8?" + Video_URI_Master_Split_Bottom(0) + Exit For + Next + m3u8Link = m3u8Link.Replace("&", "&").Replace("/u0026", "&").Replace("\u002F", "/") + Dim req As WebRequest + Dim res As WebResponse + + req = WebRequest.Create(m3u8Link) + + Try + res = req.GetResponse() + Dim ResponseStreamReader As StreamReader = New StreamReader(res.GetResponseStream) + Dim ResponseStreamString As String = ResponseStreamReader.ReadToEnd + If InStr(ResponseStreamString, "drm") Then + Anime_Add.StatusLabel.Text = "Status: m3u8 found, but looks like it is DRM protected" + Else + Anime_Add.StatusLabel.Text = "Status: m3u8 found, looks good" + Main.Pause(1) + Main.NonCR_URL = m3u8Link + t = New Thread(AddressOf Main.Grapp_non_CR) + t.Priority = ThreadPriority.Normal + t.IsBackground = True + t.Start() + Me.Close() + End If + Catch ee As WebException + Anime_Add.StatusLabel.Text = "Status: error while loading m3u8" + Main.UserBowser = False + Me.Close() + Exit Sub + ' URL doesn't exists + Catch eee As Exception + 'MsgBox(eee.ToString + vbNewLine + m3u8Link) + End Try +#End Region + End If + Anime_Add.StatusLabel.Text = "Status: idle" + Me.Close() + Main.UserBowser = False End If - 'End If End If End If If Main.UserBowser = False Then - Me.Close() + If Main.b = True Then + Anime_Add.StatusLabel.Text = "Status: idle" + Me.Close() + End If End If End If End Sub @@ -181,22 +259,14 @@ Public Class GeckoFX If Main.LoginOnly = "US_UnBlock" Then WebBrowser1.Navigate("https://www.crunchyroll.com/login") Else - 'WebBrowser1.Navigate("https://duckduckgo.com/") '") WebBrowser1.Navigate(Main.Startseite) End If - 'WebBrowser1.Navigate("about:preferences") - 'WebBrowser1.Navigate("about:addons") - - 'WebBrowser1.Navigate("https://www.crunchyroll.com/de/rwby/episode-45-world-of-remnant-1-dust-658499") - 'WebBrowser1.Navigate("https://www.crunchyroll.com/de/rwby") End If Me.Icon = My.Resources.icon - 'MsgBox(WebBrowser1.Url.ToString) Main.UserBowser = True End Sub Private Sub GeckoFX_Closing(sender As Object, e As CancelEventArgs) Handles Me.Closing - 'My.Computer.Clipboard.SetText(WebBrowser1.Document.Body.InnerHtml) Main.UserBowser = False End Sub @@ -209,11 +279,13 @@ Public Class GeckoFX End Sub - Private Sub TextBox1_KeyPress(sender As Object, e As KeyPressEventArgs) Handles TextBox1.KeyPress + Private Sub TextBox1_KeyDown(sender As Object, e As KeyEventArgs) Handles TextBox1.KeyDown Try - If Asc(e.KeyChar) = 13 Then + If e.KeyCode = Keys.Return Then + e.SuppressKeyPress = True WebBrowser1.Navigate(TextBox1.Text) End If + Catch ex As Exception MsgBox("Error in URL", MsgBoxStyle.Critical) End Try diff --git a/Crunchyroll Downloader/Main.vb b/Crunchyroll Downloader/Main.vb index 2827d95..8a15b94 100644 --- a/Crunchyroll Downloader/Main.vb +++ b/Crunchyroll Downloader/Main.vb @@ -4,6 +4,9 @@ Imports System.IO Imports Microsoft.Win32 Imports System.ComponentModel Public Class Main + Public LoggingBrowser As Boolean = False + Public NonCR_Timeout As Integer = 5 + Public NonCR_URL As String = Nothing Public gIndexH As Integer = -1 Public DialogTaskString As String Public UserCloseDialog As Boolean = False @@ -87,38 +90,38 @@ Public Class Main #Region "UI" - Private Sub pictureBox1_MouseHover(sender As Object, e As EventArgs) Handles pictureBox1.MouseMove + Private Sub PictureBox1_MouseHover(sender As Object, e As EventArgs) Handles pictureBox1.MouseMove pictureBox1.BackColor = SystemColors.Control End Sub - Private Sub pictureBox1_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox1.MouseLeave + Private Sub PictureBox1_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox1.MouseLeave pictureBox1.BackColor = Color.Transparent End Sub - Private Sub pictureBox2_MouseHover(sender As Object, e As EventArgs) Handles pictureBox2.MouseMove + Private Sub PictureBox2_MouseHover(sender As Object, e As EventArgs) Handles pictureBox2.MouseMove pictureBox2.BackColor = SystemColors.Control End Sub - Private Sub pictureBox2_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox2.MouseLeave + Private Sub PictureBox2_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox2.MouseLeave pictureBox2.BackColor = Color.Transparent End Sub - Private Sub pictureBox3_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox3.MouseEnter + Private Sub PictureBox3_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox3.MouseEnter pictureBox3.BackColor = SystemColors.Control End Sub - Private Sub pictureBox3_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox3.MouseLeave + Private Sub PictureBox3_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox3.MouseLeave pictureBox3.BackColor = Color.Transparent End Sub - Private Sub pictureBox4_MouseHover(sender As Object, e As EventArgs) Handles pictureBox4.MouseMove + Private Sub PictureBox4_MouseHover(sender As Object, e As EventArgs) Handles pictureBox4.MouseMove pictureBox4.BackColor = SystemColors.Control End Sub - Private Sub pictureBox4_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox4.MouseLeave + Private Sub PictureBox4_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox4.MouseLeave pictureBox4.BackColor = Color.Transparent End Sub @@ -126,8 +129,21 @@ Public Class Main #End Region + Public Declare Function waveOutSetVolume Lib "winmm.dll" (ByVal uDeviceID As Integer, ByVal dwVolume As Integer) As Integer Private Sub Form8_Load(sender As Object, e As EventArgs) Handles MyBase.Load + waveOutSetVolume(0, 0) + Try + Dim FileLocation As DirectoryInfo = New DirectoryInfo(Application.StartupPath) + For Each File In FileLocation.GetFiles() + If InStr(File.FullName, "log.txt") Then + My.Computer.FileSystem.DeleteFile(Path.Combine(Application.StartupPath, File.FullName)) + Exit For + End If + Next + Catch ex As Exception + + End Try ServicePointManager.Expect100Continue = True ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 Me.Icon = My.Resources.icon @@ -281,7 +297,7 @@ Public Class Main End If End Sub - Public Function bt_del(ByVal pListView As ListView, ByVal ItemIndex As Integer, ByVal NameKomplett As String) As PictureBox + Public Function Bt_del(ByVal pListView As ListView, ByVal ItemIndex As Integer, ByVal NameKomplett As String) As PictureBox 'btn erstellen funktion Dim r As Rectangle Dim bt_r As New PictureBox @@ -301,13 +317,13 @@ Public Class Main ToolTip1.SetToolTip(bt_r, NameKomplett) 'bt_r.FlatAppearance.BorderSize = 1 'bt_r.FlatAppearance.BorderColor = Color.Black - AddHandler bt_r.Click, AddressOf Me.bt_r_click - AddHandler bt_r.MouseEnter, AddressOf Me.bt_r_ME - AddHandler bt_r.MouseLeave, AddressOf Me.bt_r_ML + AddHandler bt_r.Click, AddressOf Me.Bt_r_click + AddHandler bt_r.MouseEnter, AddressOf Me.Bt_r_ME + AddHandler bt_r.MouseLeave, AddressOf Me.Bt_r_ML Return Nothing End Function - Private Sub bt_r_click(ByVal sender As Object, ByVal e As EventArgs) + Private Sub Bt_r_click(ByVal sender As Object, ByVal e As EventArgs) Dim b As PictureBox = sender b.Image = My.Resources.main_close If MessageBox.Show("Cancel this Download?", "Cancel?", MessageBoxButtons.YesNo) = DialogResult.Yes Then @@ -318,11 +334,11 @@ Public Class Main End If End Sub - Private Sub bt_r_ME(ByVal sender As Object, ByVal e As EventArgs) + Private Sub Bt_r_ME(ByVal sender As Object, ByVal e As EventArgs) Dim b As PictureBox = sender b.Image = My.Resources.main_del_hover End Sub - Private Sub bt_r_ML(ByVal sender As Object, ByVal e As EventArgs) + Private Sub Bt_r_ML(ByVal sender As Object, ByVal e As EventArgs) Dim b As PictureBox = sender b.Image = My.Resources.main_del End Sub @@ -1108,7 +1124,10 @@ Public Class Main Dim FileNameSplit As String() = pr.StartInfo.Arguments.ToString().Split(New String() {Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries) Dim FileName As String = Chr(34) + FileNameSplit(FileNameSplit.Count - 1) + Chr(34) If Me.Visible = False Or AbourtList.Contains(FileName) Then - pr.Kill() + Try + pr.Kill() + Catch ex As Exception + End Try RaiseEvent UpdateUI(FileName, 200, 0, 0) End If Me.Invoke(New Action(Function() @@ -1208,7 +1227,7 @@ Public Class Main Next End Sub - Private Sub pictureBox3_Click(sender As Object, e As EventArgs) Handles pictureBox3.Click + Private Sub PictureBox3_Click(sender As Object, e As EventArgs) Handles pictureBox3.Click RemoveFinishedTask() Pause(1) If PR_List.Count > 0 Then @@ -1221,16 +1240,16 @@ Public Class Main End Sub - Private Sub pictureBox4_Click(sender As Object, e As EventArgs) Handles pictureBox4.Click + Private Sub PictureBox4_Click(sender As Object, e As EventArgs) Handles pictureBox4.Click Anime_Add.Show() End Sub - Private Sub pictureBox2_Click(sender As Object, e As EventArgs) Handles pictureBox2.Click + Private Sub PictureBox2_Click(sender As Object, e As EventArgs) Handles pictureBox2.Click einstellungen.Show() End Sub - Private Sub pictureBox1_Click(sender As Object, e As EventArgs) Handles pictureBox1.Click + Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles pictureBox1.Click UserBowser = True GeckoFX.Show() End Sub @@ -1412,9 +1431,12 @@ Public Class Main #End Region Public Sub Grapp_non_CR() - 'Try - 'MsgBox(WebbrowserTitle) + If NonCR_URL = Nothing Then Exit Sub + Me.Invoke(New Action(Function() + Anime_Add.StatusLabel.Text = "Status: m3u8 found, trying to start the download" + Return Nothing + End Function)) Grapp_non_cr_RDY = False Dim Video_Title As String = WebbrowserTitle.Replace(" - Watch on VRV", "").Replace("Free Streaming", "").Replace("Tubi", "") Video_Title = RemoveExtraSpaces(Video_Title) @@ -1422,36 +1444,24 @@ Public Class Main Dim Video_FilenName As String = Video_Title Video_FilenName = System.Text.RegularExpressions.Regex.Replace(Video_FilenName, "[^\w\\-]", " ") Video_FilenName = RemoveExtraSpaces(Video_FilenName + ".mp4") - 'MsgBox(Video_FilenName) #End Region - - -#Region "m3u8 suche" - Dim ii As Integer = 0 - Dim Video_URI_Master As String = Nothing - Dim Video_URI_Master_Split1 As String() = WebbrowserText.Split(New String() {".m3u8?"}, System.StringSplitOptions.RemoveEmptyEntries) #Region "thumbnail" Dim thumbnail As String() = Nothing Dim thumbnail2 As String() = Nothing Dim thumbnail4 As String = "None, will usese fail image" Try - If InStr(Video_URI_Master_Split1(0), "thumbnail") Then - thumbnail = Video_URI_Master_Split1(0).Split(New String() {"thumbnail"}, System.StringSplitOptions.RemoveEmptyEntries) - ElseIf InStr(Video_URI_Master_Split1(1), "thumbnail") Then - thumbnail = Video_URI_Master_Split1(1).Split(New String() {"thumbnail"}, System.StringSplitOptions.RemoveEmptyEntries) + If InStr(WebbrowserText, "thumbnail") Then + thumbnail = WebbrowserText.Split(New String() {"thumbnail"}, System.StringSplitOptions.RemoveEmptyEntries) End If Catch ex As Exception - 'MsgBox(ex.ToString) - End Try + End Try Try For i As Integer = 0 To thumbnail.Count - 1 - 'MsgBox((thumbnail.Count - 1).ToString + vbNewLine + i.ToString + vbNewLine + thumbnail(i)) If InStr(thumbnail(i), ".jpg") Then If InStr(thumbnail(i), "https:") Then thumbnail2 = thumbnail(i).Split(New String() {".jpg"}, System.StringSplitOptions.RemoveEmptyEntries) - 'MsgBox(thumbnail2(thumbnail2.Count - 1)) Dim thumbnail3 As String() = thumbnail2(0).Split(New String() {"https:"}, System.StringSplitOptions.RemoveEmptyEntries) thumbnail4 = "https:" + thumbnail3(thumbnail3.Count - 1).Replace("&", "&").Replace("/u0026", "&").Replace("\u002F", "/").Replace("\/", "/") + ".jpg" Exit For @@ -1460,25 +1470,9 @@ Public Class Main Next Catch ex As Exception - 'MsgBox(ex.ToString) End Try - 'MsgBox(thumbnail4) - 'Dim thumbnail2 As String() = thumbnail(1).Split(New String() {Chr(34) + "}"}, System.StringSplitOptions.RemoveEmptyEntries) '(New [Char]() {"-"}) - 'Dim thumbnail3 As String = "None, will usese fail image" 'thumbnail2(0).Replace("\/", "/") #End Region - Dim hls_List As New List(Of String) - For i As Integer = 0 To Video_URI_Master_Split1.Count - 2 - Dim Video_URI_Master_Split_Top As String() = Video_URI_Master_Split1(i).Split(New String() {Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries) - Dim Video_URI_Master_Split_Bottom As String() = Video_URI_Master_Split1(i + 1).Split(New String() {Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries) - hls_List.Add(Video_URI_Master_Split_Top(Video_URI_Master_Split_Top.Count - 1) + ".m3u8?" + Video_URI_Master_Split_Bottom(0)) - Next - Me.Invoke(New Action(Function() - Anime_Add.StatusLabel.Text = "Status: m3u8 found, looking for resolution" - Return Nothing - End Function)) - -#End Region #Region "lösche doppel download" @@ -1496,88 +1490,10 @@ Public Class Main End If #End Region - Dim str As String = Nothing - Dim StreamSuccess = False - - For i2 As Integer = 0 To hls_List.Count - 1 - Dim client As New System.Net.WebClient - client.Encoding = Encoding.UTF8 - 'MsgBox(CR_URI_Master) - Dim urlnow As String = hls_List.Item(i2).Replace("&", "&").Replace("/u0026", "&").Replace("\u002F", "/") - 'MsgBox(urlnow) - str = client.DownloadString(urlnow) - 'MsgBox(str) - - - - If CBool(InStr(str, "x" + Resu.ToString + ",")) Then - Resu2 = "x" + Resu.ToString - Else - 'MsgBox(str) - If CBool(InStr(str, ResuSave + ",")) Then - Resu2 = ResuSave + "," - Else - Me.Invoke(New Action(Function() - DialogTaskString = "Resolution" - ResoNotFoundString = str - Reso.ShowDialog() - Return Nothing - End Function)) - 'MsgBox(ResoBackString) - If UserCloseDialog = True Then - Throw New System.Exception(Chr(34) + "UserAbort" + Chr(34)) - Else - ResuSave = ResoBackString - - End If - End If - End If - Dim URL_Temp As String = Nothing - Try - Dim Video_URI_1 As String() = str.Split(New String() {Resu2 + ","}, System.StringSplitOptions.RemoveEmptyEntries) - Dim Video_URI_2 As String() = Video_URI_1(1).Split(New [Char]() {Chr(34)}) - Dim Video_URI_3 As String() = Video_URI_2(2).Split(New [Char]() {System.Convert.ToChar("#")}) - URL_Temp = Video_URI_3(0).Trim() - Catch ex As Exception - ResoBackString = "[Auto]" - URL_Temp = urlnow - End Try - Dim clientIndex As New System.Net.WebClient - clientIndex.Encoding = Encoding.UTF8 - 'MsgBox(CR_URI_Master) - Dim DRM_Check As String = clientIndex.DownloadString(URL_Temp) - If InStr(DRM_Check, "drm") Then - Else - URL_DL = URL_Temp - 'MsgBox(URL_DL) - StreamSuccess = True - Exit For - End If - - Next - - If StreamSuccess = False Then - Grapp_non_cr_RDY = True - Exit Sub - End If - + URL_DL = NonCR_URL.Replace("&", "&").Replace("/u0026", "&").Replace("\u002F", "/") 'hls_List.Item(i2).Replace("&", "&").Replace("/u0026", "&").Replace("\u002F", "/") #Region "
  • constructor" Dim Subsprache3 As String = "undefined" 'HardSubValuesToDisplay(SubSprache2) - Dim ResoHTMLDisplay As String = Nothing - If ResoBackString = Nothing Then - ResoHTMLDisplay = Resu.ToString + "p" - ElseIf ResoBackString = "[Auto]" Then - ResoHTMLDisplay = "[Auto]" - Else - 'MsgBox(ResoBackString) - Dim ResoHTML As String() = ResoBackString.Split(New String() {"x"}, System.StringSplitOptions.RemoveEmptyEntries) - If ResoHTML.Count > 1 Then - ResoHTMLDisplay = ResoHTML(1) + "p" - - Else - ResoHTMLDisplay = ResoHTML(0) + "p" - End If - End If + Dim ResoHTMLDisplay As String = "[Auto]" Dim L2Name As String = Video_Title Dim L1Name_Split As String() = WebbrowserURL.Split(New String() {"/"}, System.StringSplitOptions.RemoveEmptyEntries) Dim L1Name As String = L1Name_Split(1) @@ -1594,63 +1510,6 @@ Public Class Main Anime_Add.StatusLabel.Text = "Status: idle" Return Nothing End Function)) - ' ManageWorker(URL_DL, Pfad_DL, CR_FilenName)() - 'Catch ex As Exception - ' TaskCount = TaskCount - 1 - ' Me.Invoke(New Action(Function() - ' Anime_Add.StatusLabel.Text = "Status: idle" - ' Return Nothing - ' End Function)) - ' 'StatusLabel.Text = "Status: idle" - ' Grapp_RDY = True - ' 'MsgBox(ex.ToString) - ' If CBool(InStr(ex.ToString, "Could not find the sub language")) Then - ' 'MsgBox(Sub_language_NotFound + SubSprache) - ' ElseIf CBool(InStr(ex.ToString, "RESOLUTION Not Found")) Then - ' 'MsgBox(Resolution_NotFound) - ' ElseIf CBool(InStr(ex.ToString, "Premnium Episode")) Then - ' 'MsgBox(Premium_Stream, MsgBoxStyle.Information) - ' ElseIf CBool(InStr(ex.ToString, "System.UnauthorizedAccessException")) Then - ' 'MsgBox(ErrorNoPermisson + vbNewLine + ex.ToString, MsgBoxStyle.Information) - ' ElseIf CBool(InStr(ex.ToString, Chr(34) + "UserAbort" + Chr(34))) Then - ' 'MsgBox(ex.ToString, MsgBoxStyle.Information) - ' Else - ' ' MsgBox(ex.ToString, MsgBoxStyle.Information) - - ' If MessageBox.Show(Error_unknown, "Error!", MessageBoxButtons.YesNo) = DialogResult.Yes Then - - ' Dim CCC As String() = WebbrowserText.Split(New String() {Chr(34) + "country_code" + Chr(34) + ":" + Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries) - ' Dim CCC1 As String() = CCC(1).Split(New String() {Chr(34) + "});"}, System.StringSplitOptions.RemoveEmptyEntries) - ' 'MsgBox(CCC1(0)) - ' Dim SaveString As String = "Operating System: " + My.Computer.Info.OSFullName + vbNewLine + vbNewLine + "Crunchyroll URL: " + WebbrowserURL + vbNewLine + vbNewLine + "subtitle language: " + SubSprache + vbNewLine + vbNewLine + "video resolution: " + Resu.ToString + vbNewLine + vbNewLine + "error message: " + ex.ToString + vbNewLine + ex.StackTrace.ToString + vbNewLine + vbNewLine + "softsubs enabled?: " + SoftSubs.ToString + vbNewLine + vbNewLine + "Crunchyroll Downloader Version: " + Application.ProductVersion + vbNewLine + vbNewLine + "detected location from Crunchyroll: " + CCC1(0) - ' 'MsgBox(SaveString) - ' File.WriteAllText("Error " + DateTime.Now.ToString("dd.MM.yyyy HH.mm") + ".txt", SaveString) - ' Dim Request As HttpWebRequest = CType(WebRequest.Create("https://docs.google.com/forms/d/e/1FAIpQLSdR1QI19Lh-c-XO_iXNkDwsTUZhCMEu84boQkgW5AOBUxyiyA/formResponse"), HttpWebRequest) - ' Request.Method = "POST" - ' Request.ContentType = "application/x-www-form-urlencoded" - ' Dim Post As String = "entry.240217066=" + My.Computer.Info.OSFullName + "&entry.358200455=" + WebbrowserURL + "&entry.618751432=" + SubSprache + "&entry.924054550=" + Resu.ToString + "&entry.679000538=" + ex.ToString + "&entry.1789515979=" + SoftSubsString + "&entry.683247287=" + Application.ProductVersion + "&entry.377264428=" + CCC1(0) + "&fvv=1&draftResponse=[null,null," + Chr(34) + "-3005021683493723280" + Chr(34) + "] &pageHistory=0&fbzx=-3005021683493723280" - ' Dim byteArray() As Byte = Encoding.UTF8.GetBytes(Post) - ' Request.ContentLength = byteArray.Length - ' Dim DataStream As Stream = Request.GetRequestStream() - ' DataStream.Write(byteArray, 0, byteArray.Length) - ' DataStream.Close() - ' Dim Response As HttpWebResponse = Request.GetResponse() - ' DataStream = Response.GetResponseStream() - ' Dim reader As New StreamReader(DataStream) - ' Dim ServerResponse As String = reader.ReadToEnd() - ' reader.Close() - ' DataStream.Close() - ' Response.Close() - ' Dim Version_Check As String() = ServerResponse.Split(New String() {"
    "}, System.StringSplitOptions.RemoveEmptyEntries) - ' Dim Version_Check2 As String() = Version_Check(1).Split(New String() {"
    "}, System.StringSplitOptions.RemoveEmptyEntries) - ' If Application.ProductVersion = Version_Check2(0) Then - ' Else - ' 'MsgBox("A newer version is available: v" + Version_Check2(0)) - ' End If - ' End If - ' End If - - 'End Try End Sub End Class \ No newline at end of file diff --git a/Crunchyroll Downloader/My Project/AssemblyInfo.vb b/Crunchyroll Downloader/My Project/AssemblyInfo.vb index 9e4595a..206e2e1 100644 --- a/Crunchyroll Downloader/My Project/AssemblyInfo.vb +++ b/Crunchyroll Downloader/My Project/AssemblyInfo.vb @@ -33,5 +33,5 @@ Imports System.Runtime.InteropServices ' - + diff --git a/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.exe b/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.exe index 52b4047..3f8945d 100644 Binary files a/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.exe and b/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.exe differ diff --git a/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.pdb b/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.pdb index 4a8f533..43ab44c 100644 Binary files a/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.pdb and b/Crunchyroll Downloader/bin/x86/Debug/Crunchyroll Downloader.pdb differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.exe b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.exe new file mode 100644 index 0000000..46339c2 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.exe differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.exe.config b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.exe.config new file mode 100644 index 0000000..d50871d --- /dev/null +++ b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.exe.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.pdb b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.pdb new file mode 100644 index 0000000..cb0555c Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.pdb differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.xml b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.xml new file mode 100644 index 0000000..459cbde --- /dev/null +++ b/Crunchyroll Downloader/bin/x86/Release/Crunchyroll Downloader.xml @@ -0,0 +1,329 @@ + + + + +Crunchyroll Downloader + + + + + + Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + + + + + Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + + + + + Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die "type":"midroll" ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die {"type":"preroll","offset":0}, ähnelt. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die <img id="footer_country_flag" src="https://www.crunchyroll.com/i/country_flags/ ähnelt. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die ","resolution":"adaptive" ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die "format":"adaptive_hls", ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </body> +</html> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </a> + +</div> + +</div> + +</div> + +<img alt="image error" src="balken1.png" class="class-balken"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die " class="imagestyle"> + +<div> + +<span class="titel" dir="auto"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die <!DOCTYPE html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +</head> +<html> + <title>CRD</title> + + <style> + .main-bg {margin:0 0 0 0;background-color:#F2F2F2;} + .div-spacer{width:16px;height:110px;display:block;margin-bottom:14px;position:relative} + .div-episode{width:804px;height:110px;display:block;margin-bottom:14px;position:relative} + .class-balken{width:820px;height:8px;display:block;margin-bottom:4px;margin-top:6px} + .class-cc{width:36px; [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </span> + +<div class="progressbar"> + +<div class="progressbar-value" style="width: 0%"></div> + +</div> +<span dir="auto" class='percenttext'>0%</span> +<div> +<span dir="auto" class="resotext"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die "> <img alt="image error" src="cc1.png" class="class-cc"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </span> + +<a href="#" class="cc-wert" title="Softsubs: ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die + <div class="div-episode"> + +<img alt="image error" src=" ähnelt. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol). + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die <!DOCTYPE html> +<html> + <title>CRD</title> + + <style> + .main-bg {margin:0 0 0 -36px;background-color:#757575;} + .imagestyle{width:156px;height:88px;display:block;margin-bottom:4px} .ulStyle{margin:0 0 0 -10px;display:block;position:relative;margin-top:8px} + .ulStyle li{margin-left:12px;float:left;display:block;position:relative} + .listyle{width:156px;display:block;background:#fff;padding:16px;margin-bottom:14px;position:relative;background-color:#b5b3b3} + .progressbar{height:14px;backgro [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die "thumbnail":{"url":" ähnelt. + + + + diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/AccessibleHandler.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/AccessibleHandler.dll new file mode 100644 index 0000000..69be6a2 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/AccessibleHandler.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/AccessibleMarshal.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/AccessibleMarshal.dll new file mode 100644 index 0000000..3d79fb4 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/AccessibleMarshal.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/IA2Marshal.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/IA2Marshal.dll new file mode 100644 index 0000000..fe76849 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/IA2Marshal.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/breakpadinjector.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/breakpadinjector.dll new file mode 100644 index 0000000..e409a93 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/breakpadinjector.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/d3dcompiler_47.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/d3dcompiler_47.dll new file mode 100644 index 0000000..dbfe9ce Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/d3dcompiler_47.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/freebl3.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/freebl3.dll new file mode 100644 index 0000000..73c40f8 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/freebl3.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/lgpllibs.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/lgpllibs.dll new file mode 100644 index 0000000..eb77be7 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/lgpllibs.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/libEGL.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/libEGL.dll new file mode 100644 index 0000000..78ce132 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/libEGL.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/libGLESv2.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/libGLESv2.dll new file mode 100644 index 0000000..6d0dbdc Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/libGLESv2.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/mozavcodec.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/mozavcodec.dll new file mode 100644 index 0000000..da610cd Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/mozavcodec.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/mozavutil.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/mozavutil.dll new file mode 100644 index 0000000..5cc4672 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/mozavutil.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/mozglue.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/mozglue.dll new file mode 100644 index 0000000..60b653f Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/mozglue.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/nss3.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/nss3.dll new file mode 100644 index 0000000..2078062 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/nss3.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/nssckbi.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/nssckbi.dll new file mode 100644 index 0000000..632948c Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/nssckbi.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/nssdbm3.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/nssdbm3.dll new file mode 100644 index 0000000..126caf8 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/nssdbm3.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/omni.ja b/Crunchyroll Downloader/bin/x86/Release/Firefox/omni.ja new file mode 100644 index 0000000..7a78a4d Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/omni.ja differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/plugin-container.exe b/Crunchyroll Downloader/bin/x86/Release/Firefox/plugin-container.exe new file mode 100644 index 0000000..9f3c85e Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/plugin-container.exe differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/plugin-hang-ui.exe b/Crunchyroll Downloader/bin/x86/Release/Firefox/plugin-hang-ui.exe new file mode 100644 index 0000000..ee4da80 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/plugin-hang-ui.exe differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/qipcap.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/qipcap.dll new file mode 100644 index 0000000..1d085cf Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/qipcap.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/softokn3.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/softokn3.dll new file mode 100644 index 0000000..e5c7629 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/softokn3.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Firefox/xul.dll b/Crunchyroll Downloader/bin/x86/Release/Firefox/xul.dll new file mode 100644 index 0000000..8588556 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Firefox/xul.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Geckofx-Core.dll b/Crunchyroll Downloader/bin/x86/Release/Geckofx-Core.dll new file mode 100644 index 0000000..1126fef Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Geckofx-Core.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Geckofx-Winforms.dll b/Crunchyroll Downloader/bin/x86/Release/Geckofx-Winforms.dll new file mode 100644 index 0000000..20796c3 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Geckofx-Winforms.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Helpers.dll b/Crunchyroll Downloader/bin/x86/Release/Helpers.dll new file mode 100644 index 0000000..8f09873 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Helpers.dll differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Helpers.pdb b/Crunchyroll Downloader/bin/x86/Release/Helpers.pdb new file mode 100644 index 0000000..8d7bcbb Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/Helpers.pdb differ diff --git a/Crunchyroll Downloader/bin/x86/Release/Helpers.xml b/Crunchyroll Downloader/bin/x86/Release/Helpers.xml new file mode 100644 index 0000000..193a3ce --- /dev/null +++ b/Crunchyroll Downloader/bin/x86/Release/Helpers.xml @@ -0,0 +1,58 @@ + + + + +Helpers + + + + + + Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + + + + + Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + + + + + Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + + + + + you can pass Delegates together with suitable arguments to the methods RunAsync(), + NotifyGui() or ReportProgress(), and the Delegate will be executed either in a + side-thread or in the Gui-thread + + + + + executes the Delegate in the Gui-thread, if the last progress-report is more + than ago, and the process isn't canceled + + + + + executes the Delegate in the Gui-thread, if the process isn't canceled + + + + executes the Delegate in a thread of the threadpool + + + executes the Delegate in a thread of the threadpool + + + executes the Delegate in the Gui-thread + + + + this Exception is not meant to be handled. Only for logging and debugging-purposes + + + + diff --git a/Crunchyroll Downloader/bin/x86/Release/ffmpeg.exe b/Crunchyroll Downloader/bin/x86/Release/ffmpeg.exe new file mode 100644 index 0000000..822edd4 Binary files /dev/null and b/Crunchyroll Downloader/bin/x86/Release/ffmpeg.exe differ diff --git a/Crunchyroll Downloader/bin/x86/Release/log.txt-main.19256 b/Crunchyroll Downloader/bin/x86/Release/log.txt-main.19256 new file mode 100644 index 0000000..b476e51 --- /dev/null +++ b/Crunchyroll Downloader/bin/x86/Release/log.txt-main.19256 @@ -0,0 +1,23034 @@ +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /watch/GYW4NNEE6/BIGFOOT:Community-Profile HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _token=true; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp Upgrade-Insecure-Requests: 1 +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25405810 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.sca1b.amazontrust.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=127846 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:39 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a63ff-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Tue, 14 Jan 2020 01:41:25 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sun, 12 Jan 2020 00:10:39 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (dcb/7F5F) +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7787c17f7e39468ee68e2078b8b5894e.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: VoTgWwR3ehQ0uMY15K73sbfhV49SwC6XPEpI3qy2qUEsiFF2b9mxGw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=127846 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:39 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a63ff-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Tue, 14 Jan 2020 01:41:25 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sun, 12 Jan 2020 00:10:39 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (dcb/7F5F) +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7787c17f7e39468ee68e2078b8b5894e.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: VoTgWwR3ehQ0uMY15K73sbfhV49SwC6XPEpI3qy2qUEsiFF2b9mxGw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 25499800 serial=0x1 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 25499800 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 25499800 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=25499800 trans=25495400 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405560 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25405560 serial=1 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 25499800 mConnection=1EF28C50 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 25499800 sslsocketcontrol=25405810 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 25499800 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 25499800 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25405560 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25405560 count=591 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25405560 avail=591 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://vrv.co/[]/[http2.1]/watch/GYW4NNEE6/BIGFOOT:Community-Profile requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25405560 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25405560 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25405560 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 Stream ID 0xF [session=25499800] for URI /watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25405560 depends on stream 0xD +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 Generating 389 bytes of HEADERS for stream 0xF with priority weight 41 dep 0xD frames 1 uri=/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25405560 used 591 of 591. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25405560 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25405560 inline=402 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25405560 result 0 len=402 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=402 rv=0 actual=402 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405560 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405560 trans readsegments rv 0 read=591 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25405560 countread=591 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25405560 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405560 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405560 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405560 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25405560 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 25499800 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 128 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16777215 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 25499800 len=2147418112 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 25499800 session window 65535 increased by 2147418112 now 2147483647. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 25499800 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 302 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0xF priorityLen=0 stream=25405560 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25405560 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: max-age=300, public +[19256:Socket Thread]: I/nsHttp content-security-policy: frame-ancestors 'none' +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:24 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-frame-options: deny +[19256:Socket Thread]: I/nsHttp x-powered-by: Express +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: i-0t7GiKYL81wkDSqDfGeOq4ojWiS4svS4c4H44dn_-udAwLOwLNkA== +[19256:Socket Thread]: I/nsHttp age: 195 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: max-age=300, public +[19256:Socket Thread]: I/nsHttp content-security-policy: frame-ancestors 'none' +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:24 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-frame-options: deny +[19256:Socket Thread]: I/nsHttp x-powered-by: Express +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: i-0t7GiKYL81wkDSqDfGeOq4ojWiS4svS4c4H44dn_-udAwLOwLNkA== +[19256:Socket Thread]: I/nsHttp age: 195 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0xF newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0xF newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16737 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16713 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16713 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16713 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::CloseTransaction 25499800 25495400 804b0002 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseTransaction probably a cancel. this=25499800, trans=25495400, result=804b0002, streamID=0xF stream=25405560 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25405560 0xF 804B0002 +[19256:Socket Thread]: I/nsHttp Stream 0xF had not processed recv FIN, sending RST code 8 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateRst 25499800 0xF 8 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=13 rv=0 actual=13 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25405560 0xf 804B0002 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Stream had active partial read frame on close +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405560 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /watch/GYW4NNEE6/BIGFOOT:Community-Profile HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _token=true; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp Upgrade-Insecure-Requests: 1 +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405560 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25405560 serial=1 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25405560 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25405560 count=591 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25405560 avail=591 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://vrv.co/[]/[http2.1]/watch/GYW4NNEE6/BIGFOOT:Community-Profile requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25405560 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25405560 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25405560 id=0x11 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 Stream ID 0x11 [session=25499800] for URI /watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25405560 depends on stream 0xD +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 Generating 89 bytes of HEADERS for stream 0x11 with priority weight 41 dep 0xD frames 1 uri=/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25405560 used 591 of 591. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25405560 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25405560 inline=102 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25405560 result 0 len=102 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=102 rv=0 actual=102 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405560 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405560 trans readsegments rv 0 read=591 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25405560 countread=591 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25405560 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405560 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405560 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405560 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405560 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25405560 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 329 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 371 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 347 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 389 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 365 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6941 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=6941 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6941 localWindow=12518627 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 2845 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 417 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=417 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=417 localWindow=12518210 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 417 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12510018 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12501826 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 42 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 18 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12493634 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12485442 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 60 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 discard frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 36 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12477250 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 5352 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=5352 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=5352 localWindow=12471898 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 1256 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12463706 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7995 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=0 Len=7995 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7995 localWindow=12455711 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 4096 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 6 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 3899 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadyToProcessDataFrame 25499800 lookup streamID 0xF failed. Next = 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 6 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0xF Stream Ptr 00000000 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 trying to discard 0 bytes of data +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 6 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 302 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x11 priorityLen=0 stream=25405560 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25405560 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: max-age=300, public +[19256:Socket Thread]: I/nsHttp content-security-policy: frame-ancestors 'none' +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:24 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-frame-options: deny +[19256:Socket Thread]: I/nsHttp x-powered-by: Express +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: b4sUOTduHcDNP8ekMDtlJxKiGQ61wywHLPVKamH2NFIenpgppnhoeA== +[19256:Socket Thread]: I/nsHttp age: 196 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: max-age=300, public +[19256:Socket Thread]: I/nsHttp content-security-policy: frame-ancestors 'none' +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:24 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-frame-options: deny +[19256:Socket Thread]: I/nsHttp x-powered-by: Express +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: b4sUOTduHcDNP8ekMDtlJxKiGQ61wywHLPVKamH2NFIenpgppnhoeA== +[19256:Socket Thread]: I/nsHttp age: 196 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12447519 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12439327 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16737 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16713 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16713 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/segment.1f5fad33359ddc482034.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/main.6747c5ad06d501193bbe.css HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/css,*/*;q=0.1 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/common.88b61a3b069345920176.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /up_loader.1.1.0.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: js.adsrvr.org +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: TDID=8e17a054-a89c-45ba-adcb-0da5e7fffa00; TDCPM=CAESFAoFdGFwYWQSCwjSy5Gi9LGLOBAFEhUKBmdvb2dsZRILCNyN0c_1q4s4EAUSGQoKcmlnaHRtZWRpYRILCOTf66yMrIs4EAUSFwoIYXBwbmV4dXMSCwiI2_XEjKyLOBAFEhYKB2FkZHRoaXMSCwiix9bsnKyLOBAFEhYKB2JsdWVrYWkSCwiOkIbvnKyLOBAFGAUoAzILCNrR2d_v3Is4EAVCDyINCAESCQoFdGllcjMQAVIVCgZnb29nbGUSCwiEh5TC9auLOBAFUhYKB3J1Ymljb24SCwiEh5TC9auLOBAFUhcKCGFwcG5leHVzEgsI1vHGmYysizgQBVIZCgpyaWdodG1lZGlhEgsI1vHGmYysizgQBVIVCgZhZGFwdHYSCwim7pLC9auLOBAFUhgKCWFvbGFkdGVjaBILCO6Q9bbUvYs4EAVSFQoGY2FzYWxlEgsI7pD1ttS9izgQBVIXCghwdWJtYXRpYxILCO6Q9bbUvYs4EAVSGAoJYmlkc3dpdGNoEgsI1vHGmYysizgQBVoHejRpd3lmN2AB +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/main.41f55c64b051948fd46d.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/app.79a8ac0ddbbd8fc6797d.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/manifest.cecebee749fde682ccd0.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/unsupported.6a185c435e309c38865a.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/mondo/e4e43ea71ac360a96d36ef760883559a.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/boomerang/67c4cd0843a3f65707241cced8b255b3.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/cartoonhangover/fe6d9f6e046d18d85c3e260517324bf2.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/crunchyroll/2f608375a63408fd2a808049ebe1177d.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/hidive/5d65b6c92604fc2e793d3f621805e6ad.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/nicksplat/285b3e6bfccb0d55ad8c07082bfca377.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/roosterteeth/84580e82f7182ab2f523832390a2ca9b.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32439 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12431135 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32439 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24247 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12422943 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24247 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16426 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/92x92/catalog/vrvselect/495617604205faf4ef10affdecf12006.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/240x360/catalog/mondo/fc53811e7318f15fd88bfcf1d7f4d9a4.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/img/account/callout-image.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32421 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12414751 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32421 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24229 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12406559 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24229 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16426 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/img/browsers/close-x@2x.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/img/browsers/chrome.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/img/browsers/firefox.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/img/browsers/edge.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/img/browsers/safari.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32403 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12398367 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32403 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24211 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7404 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=7404 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=7404 unacked=64748 localWindow=12518164 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7404 localWindow=12390963 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24211 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16807 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=72940 localWindow=12509972 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12382771 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=81132 localWindow=12501780 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12374579 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16426 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32750 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=89324 localWindow=12493588 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12366387 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=97516 localWindow=12485396 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12358195 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24576 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16444 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16420 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32732 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=105708 localWindow=12477204 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12350003 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32732 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24540 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=113900 localWindow=12469012 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12341811 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24540 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16426 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=16402 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32714 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=8192 unacked=122092 localWindow=12460820 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12333619 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32714 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=24522 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 5109 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=0 Len=5109 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x11 newbytes=5109 unacked=127201 localWindow=12455711 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=5109 localWindow=12328510 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=27659 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x11 Stream Ptr 25405560 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405560 count=27659 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 25405560 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=25405560 0x11 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25405560 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25405560 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405560 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 28CA59A0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=28CA59A0 serial=1 NextID=0x13 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA59A0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA59A0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 28CA59A0 count=565 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 28CA59A0 avail=565 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/segment.1f5fad33359ddc482034.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=28CA59A0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 28CA59A0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=28CA59A0 id=0x13 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA59A0 Stream ID 0x13 [session=25499800] for URI /vrvweb/build/segment.1f5fad33359ddc482034.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA59A0 depends on background group for trans 28C65400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA59A0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA59A0 Generating 138 bytes of HEADERS for stream 0x13 with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/segment.1f5fad33359ddc482034.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 28CA59A0 used 565 of 565. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 28CA59A0 0x13 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 28CA59A0 inline=151 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=28CA59A0 result 0 len=151 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=151 rv=0 actual=151 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA59A0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA59A0 trans readsegments rv 0 read=565 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA59A0 countread=565 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 28CA5AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=28CA5AB0 serial=1 NextID=0x15 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA59A0 0x13 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA59A0 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA59A0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA59A0 0x13: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA59A0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA59A0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 28CA5BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=28CA5BC0 serial=1 NextID=0x15 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5AB0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5AB0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 28CA5AB0 count=578 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 28CA5AB0 avail=578 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/main.6747c5ad06d501193bbe.css requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=28CA5AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 28CA5AB0 Currently 2 streams in session, high water mark is 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=28CA5AB0 id=0x15 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5AB0 Stream ID 0x15 [session=25499800] for URI /vrvweb/build/main.6747c5ad06d501193bbe.css +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5AB0 depends on background group for trans 28C66000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5AB0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5AB0 Generating 92 bytes of HEADERS for stream 0x15 with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/main.6747c5ad06d501193bbe.css +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 28CA5AB0 used 578 of 578. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 28CA5AB0 0x15 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 28CA5AB0 inline=105 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=28CA5AB0 result 0 len=105 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=105 rv=0 actual=105 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5AB0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5AB0 trans readsegments rv 0 read=578 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5AB0 countread=578 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 28CA5CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=28CA5CD0 serial=1 NextID=0x17 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5BC0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5BC0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 28CA5BC0 count=564 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 28CA5BC0 avail=564 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/common.88b61a3b069345920176.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=28CA5BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 28CA5BC0 Currently 3 streams in session, high water mark is 3 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=28CA5BC0 id=0x17 concurrent=3 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5BC0 Stream ID 0x17 [session=25499800] for URI /vrvweb/build/common.88b61a3b069345920176.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5BC0 depends on background group for trans 28C67000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5BC0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5BC0 Generating 77 bytes of HEADERS for stream 0x17 with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/common.88b61a3b069345920176.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 28CA5BC0 used 564 of 564. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 28CA5BC0 0x17 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 28CA5BC0 inline=90 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=28CA5BC0 result 0 len=90 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=90 rv=0 actual=90 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5BC0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5BC0 trans readsegments rv 0 read=564 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5BC0 countread=564 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 28CA5DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=28CA5DE0 serial=1 NextID=0x19 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5AB0 0x15 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5AB0 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5AB0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5AB0 0x15: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5AB0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5AB0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 28CA5EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=28CA5EF0 serial=1 NextID=0x19 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5CD0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 28CA5CD0 count=562 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 28CA5CD0 avail=562 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/main.41f55c64b051948fd46d.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=28CA5CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 28CA5CD0 Currently 4 streams in session, high water mark is 4 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=28CA5CD0 id=0x19 concurrent=4 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5CD0 Stream ID 0x19 [session=25499800] for URI /vrvweb/build/main.41f55c64b051948fd46d.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5CD0 depends on background group for trans 28C68000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5CD0 Generating 76 bytes of HEADERS for stream 0x19 with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/main.41f55c64b051948fd46d.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 28CA5CD0 used 562 of 562. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 28CA5CD0 0x19 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 28CA5CD0 inline=89 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=28CA5CD0 result 0 len=89 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=89 rv=0 actual=89 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5CD0 trans readsegments rv 0 read=562 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5CD0 countread=562 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36010 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36010 serial=1 NextID=0x1B (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5BC0 0x17 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5BC0 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5BC0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5BC0 0x17: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5BC0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5BC0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36120 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36120 serial=1 NextID=0x1B (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5DE0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5DE0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 28CA5DE0 count=561 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 28CA5DE0 avail=561 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/app.79a8ac0ddbbd8fc6797d.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=28CA5DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 28CA5DE0 Currently 5 streams in session, high water mark is 5 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=28CA5DE0 id=0x1B concurrent=5 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5DE0 Stream ID 0x1B [session=25499800] for URI /vrvweb/build/app.79a8ac0ddbbd8fc6797d.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5DE0 depends on background group for trans 28C68800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5DE0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5DE0 Generating 76 bytes of HEADERS for stream 0x1B with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/app.79a8ac0ddbbd8fc6797d.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 28CA5DE0 used 561 of 561. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 28CA5DE0 0x1B 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 28CA5DE0 inline=89 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=28CA5DE0 result 0 len=89 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=89 rv=0 actual=89 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5DE0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5DE0 trans readsegments rv 0 read=561 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5DE0 countread=561 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36230 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36230 serial=1 NextID=0x1D (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5EF0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 28CA5EF0 count=566 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 28CA5EF0 avail=566 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/manifest.cecebee749fde682ccd0.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=28CA5EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 28CA5EF0 Currently 6 streams in session, high water mark is 6 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=28CA5EF0 id=0x1D concurrent=6 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5EF0 Stream ID 0x1D [session=25499800] for URI /vrvweb/build/manifest.cecebee749fde682ccd0.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5EF0 depends on background group for trans 28C69000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 28CA5EF0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5EF0 Generating 78 bytes of HEADERS for stream 0x1D with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/manifest.cecebee749fde682ccd0.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 28CA5EF0 used 566 of 566. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 28CA5EF0 0x1D 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 28CA5EF0 inline=91 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=28CA5EF0 result 0 len=91 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=91 rv=0 actual=91 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5EF0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5EF0 trans readsegments rv 0 read=566 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5EF0 countread=566 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36340 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36340 serial=1 NextID=0x1F (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5CD0 0x19 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5CD0 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5CD0 0x19: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5CD0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36450 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36450 serial=1 NextID=0x1F (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36010 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36010 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36010 count=569 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36010 avail=569 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/unsupported.6a185c435e309c38865a.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36010 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36010 Currently 7 streams in session, high water mark is 7 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36010 id=0x1F concurrent=7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36010 Stream ID 0x1F [session=25499800] for URI /vrvweb/build/unsupported.6a185c435e309c38865a.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36010 depends on background group for trans 28C69C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36010 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36010 Generating 81 bytes of HEADERS for stream 0x1F with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/unsupported.6a185c435e309c38865a.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36010 used 569 of 569. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36010 0x1F 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36010 inline=94 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36010 result 0 len=94 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=94 rv=0 actual=94 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36010 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36010 trans readsegments rv 0 read=569 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36010 countread=569 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36560 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36560 serial=1 NextID=0x21 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36120 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36120 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36120 count=602 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36120 avail=602 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/mondo/e4e43ea71ac360a96d36ef760883559a.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36120 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36120 Currently 8 streams in session, high water mark is 8 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36120 id=0x21 concurrent=8 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36120 Stream ID 0x21 [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/mondo/e4e43ea71ac360a96d36ef760883559a.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36120 depends on background group for trans 28C6A400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36120 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36120 Generating 104 bytes of HEADERS for stream 0x21 with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/mondo/e4e43ea71ac360a96d36ef760883559a.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36120 used 602 of 602. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36120 0x21 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36120 inline=117 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36120 result 0 len=117 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=117 rv=0 actual=117 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36120 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36120 trans readsegments rv 0 read=602 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36120 countread=602 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36670 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36670 serial=1 NextID=0x23 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5DE0 0x1B block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5DE0 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5DE0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5DE0 0x1B: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5DE0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5DE0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36780 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36780 serial=1 NextID=0x23 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36230 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36230 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36230 count=606 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36230 avail=606 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/boomerang/67c4cd0843a3f65707241cced8b255b3.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36230 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36230 Currently 9 streams in session, high water mark is 9 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36230 id=0x23 concurrent=9 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36230 Stream ID 0x23 [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/boomerang/67c4cd0843a3f65707241cced8b255b3.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36230 depends on background group for trans 28C6AC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36230 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36230 Generating 107 bytes of HEADERS for stream 0x23 with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/boomerang/67c4cd0843a3f65707241cced8b255b3.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36230 used 606 of 606. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36230 0x23 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36230 inline=120 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36230 result 0 len=120 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=120 rv=0 actual=120 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36230 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36230 trans readsegments rv 0 read=606 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36230 countread=606 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36890 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36890 serial=1 NextID=0x25 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 28CA5EF0 0x1D block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 28CA5EF0 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5EF0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 28CA5EF0 0x1D: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 28CA5EF0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=28CA5EF0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C369A0 serial=1 NextID=0x25 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36340 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36340 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36340 count=612 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36340 avail=612 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/cartoonhangover/fe6d9f6e046d18d85c3e260517324bf2.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36340 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36340 Currently 10 streams in session, high water mark is 10 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36340 id=0x25 concurrent=10 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36340 Stream ID 0x25 [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/cartoonhangover/fe6d9f6e046d18d85c3e260517324bf2.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36340 depends on background group for trans 28C6B800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36340 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36340 Generating 111 bytes of HEADERS for stream 0x25 with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/cartoonhangover/fe6d9f6e046d18d85c3e260517324bf2.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36340 used 612 of 612. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36340 0x25 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36340 inline=124 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36340 result 0 len=124 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=124 rv=0 actual=124 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36340 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36340 trans readsegments rv 0 read=612 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36340 countread=612 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36AB0 serial=1 NextID=0x27 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36450 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36450 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36450 count=608 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36450 avail=608 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/crunchyroll/2f608375a63408fd2a808049ebe1177d.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36450 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36450 Currently 11 streams in session, high water mark is 11 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36450 id=0x27 concurrent=11 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36450 Stream ID 0x27 [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/crunchyroll/2f608375a63408fd2a808049ebe1177d.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36450 depends on background group for trans 28C6C000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36450 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36450 Generating 108 bytes of HEADERS for stream 0x27 with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/crunchyroll/2f608375a63408fd2a808049ebe1177d.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36450 used 608 of 608. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36450 0x27 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36450 inline=121 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36450 result 0 len=121 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=121 rv=0 actual=121 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36450 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36450 trans readsegments rv 0 read=608 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36450 countread=608 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36BC0 serial=1 NextID=0x29 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36010 0x1F block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36010 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36010 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36010 0x1F: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36010 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36010 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36CD0 serial=1 NextID=0x29 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36560 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36560 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36560 count=603 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36560 avail=603 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/hidive/5d65b6c92604fc2e793d3f621805e6ad.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36560 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36560 Currently 12 streams in session, high water mark is 12 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36560 id=0x29 concurrent=12 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36560 Stream ID 0x29 [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/hidive/5d65b6c92604fc2e793d3f621805e6ad.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36560 depends on background group for trans 28C6C800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36560 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36560 Generating 105 bytes of HEADERS for stream 0x29 with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/hidive/5d65b6c92604fc2e793d3f621805e6ad.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36560 used 603 of 603. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36560 0x29 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36560 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36560 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36560 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36560 trans readsegments rv 0 read=603 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36560 countread=603 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36DE0 serial=1 NextID=0x2B (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36120 0x21 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36120 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36120 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36120 0x21: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36120 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36120 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36EF0 serial=1 NextID=0x2B (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36670 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36670 count=606 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36670 avail=606 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/nicksplat/285b3e6bfccb0d55ad8c07082bfca377.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36670 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36670 Currently 13 streams in session, high water mark is 13 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36670 id=0x2B concurrent=13 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36670 Stream ID 0x2B [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/nicksplat/285b3e6bfccb0d55ad8c07082bfca377.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36670 depends on background group for trans 28CCA400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36670 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36670 Generating 106 bytes of HEADERS for stream 0x2B with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/nicksplat/285b3e6bfccb0d55ad8c07082bfca377.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36670 used 606 of 606. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36670 0x2B 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36670 inline=119 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36670 result 0 len=119 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=119 rv=0 actual=119 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36670 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36670 trans readsegments rv 0 read=606 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36670 countread=606 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C37010 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C37010 serial=1 NextID=0x2D (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36780 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36780 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36780 count=609 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36780 avail=609 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/roosterteeth/84580e82f7182ab2f523832390a2ca9b.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36780 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36780 Currently 14 streams in session, high water mark is 14 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36780 id=0x2D concurrent=14 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36780 Stream ID 0x2D [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/roosterteeth/84580e82f7182ab2f523832390a2ca9b.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36780 depends on background group for trans 28CCAC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36780 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36780 Generating 108 bytes of HEADERS for stream 0x2D with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/roosterteeth/84580e82f7182ab2f523832390a2ca9b.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36780 used 609 of 609. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36780 0x2D 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36780 inline=121 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36780 result 0 len=121 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=121 rv=0 actual=121 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36780 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36780 trans readsegments rv 0 read=609 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36780 countread=609 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36230 0x23 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36230 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36230 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36230 0x23: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36230 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36230 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36890 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36890 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36890 count=606 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36890 avail=606 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/92x92/catalog/vrvselect/495617604205faf4ef10affdecf12006.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36890 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36890 Currently 15 streams in session, high water mark is 15 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36890 id=0x2F concurrent=15 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36890 Stream ID 0x2F [session=25499800] for URI /imgsrv/display/thumbnail/92x92/catalog/vrvselect/495617604205faf4ef10affdecf12006.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36890 depends on background group for trans 25490400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36890 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36890 Generating 106 bytes of HEADERS for stream 0x2F with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/92x92/catalog/vrvselect/495617604205faf4ef10affdecf12006.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36890 used 606 of 606. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36890 0x2F 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36890 inline=119 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36890 result 0 len=119 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=119 rv=0 actual=119 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36890 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36890 trans readsegments rv 0 read=606 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36890 countread=606 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C369A0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C369A0 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C369A0 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/240x360/catalog/mondo/fc53811e7318f15fd88bfcf1d7f4d9a4.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C369A0 Currently 16 streams in session, high water mark is 16 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C369A0 id=0x31 concurrent=16 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 Stream ID 0x31 [session=25499800] for URI /imgsrv/display/thumbnail/240x360/catalog/mondo/fc53811e7318f15fd88bfcf1d7f4d9a4.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C369A0 depends on background group for trans 25491000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C369A0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 Generating 105 bytes of HEADERS for stream 0x31 with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/240x360/catalog/mondo/fc53811e7318f15fd88bfcf1d7f4d9a4.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C369A0 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C369A0 0x31 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C369A0 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C369A0 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C369A0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C369A0 countread=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36340 0x25 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36340 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36340 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36340 0x25: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36340 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36340 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36AB0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36AB0 count=564 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36AB0 avail=564 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/img/account/callout-image.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36AB0 Currently 17 streams in session, high water mark is 17 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36AB0 id=0x33 concurrent=17 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 Stream ID 0x33 [session=25499800] for URI /vrvweb/assets/img/account/callout-image.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36AB0 depends on background group for trans 25491800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36AB0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 Generating 76 bytes of HEADERS for stream 0x33 with priority weight 11 dep 0x7 frames 1 uri=/vrvweb/assets/img/account/callout-image.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36AB0 used 564 of 564. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36AB0 0x33 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36AB0 inline=89 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36AB0 result 0 len=89 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=89 rv=0 actual=89 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36AB0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 trans readsegments rv 0 read=564 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36AB0 countread=564 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36450 0x27 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36450 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36450 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36450 0x27: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36450 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36450 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36BC0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36BC0 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36BC0 count=562 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36BC0 avail=562 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/img/browsers/close-x@2x.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36BC0 Currently 18 streams in session, high water mark is 18 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36BC0 id=0x35 concurrent=18 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36BC0 Stream ID 0x35 [session=25499800] for URI /vrvweb/assets/img/browsers/close-x@2x.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36BC0 depends on background group for trans 25493000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36BC0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36BC0 Generating 76 bytes of HEADERS for stream 0x35 with priority weight 11 dep 0x7 frames 1 uri=/vrvweb/assets/img/browsers/close-x@2x.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36BC0 used 562 of 562. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36BC0 0x35 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36BC0 inline=89 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36BC0 result 0 len=89 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=89 rv=0 actual=89 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36BC0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36BC0 trans readsegments rv 0 read=562 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36BC0 countread=562 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36CD0 count=558 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36CD0 avail=558 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/img/browsers/chrome.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36CD0 Currently 19 streams in session, high water mark is 19 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36CD0 id=0x37 concurrent=19 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 Stream ID 0x37 [session=25499800] for URI /vrvweb/assets/img/browsers/chrome.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36CD0 depends on background group for trans 25493800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 Generating 73 bytes of HEADERS for stream 0x37 with priority weight 11 dep 0x7 frames 1 uri=/vrvweb/assets/img/browsers/chrome.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36CD0 used 558 of 558. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36CD0 0x37 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36CD0 inline=86 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36CD0 result 0 len=86 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=86 rv=0 actual=86 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36CD0 trans readsegments rv 0 read=558 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36CD0 countread=558 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36560 0x29 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36560 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36560 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36560 0x29: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36560 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36560 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36DE0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36DE0 count=559 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36DE0 avail=559 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/img/browsers/firefox.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36DE0 Currently 20 streams in session, high water mark is 20 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36DE0 id=0x39 concurrent=20 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 Stream ID 0x39 [session=25499800] for URI /vrvweb/assets/img/browsers/firefox.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36DE0 depends on background group for trans 28C64C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36DE0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 Generating 73 bytes of HEADERS for stream 0x39 with priority weight 11 dep 0x7 frames 1 uri=/vrvweb/assets/img/browsers/firefox.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36DE0 used 559 of 559. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36DE0 0x39 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36DE0 inline=86 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36DE0 result 0 len=86 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=86 rv=0 actual=86 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36DE0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36DE0 trans readsegments rv 0 read=559 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36DE0 countread=559 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36EF0 count=556 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36EF0 avail=556 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/img/browsers/edge.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36EF0 Currently 21 streams in session, high water mark is 21 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36EF0 id=0x3B concurrent=21 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Stream ID 0x3B [session=25499800] for URI /vrvweb/assets/img/browsers/edge.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on background group for trans 28CCB800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Generating 71 bytes of HEADERS for stream 0x3B with priority weight 11 dep 0x7 frames 1 uri=/vrvweb/assets/img/browsers/edge.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36EF0 used 556 of 556. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36EF0 0x3B 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36EF0 inline=84 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36EF0 result 0 len=84 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=84 rv=0 actual=84 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=556 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36EF0 countread=556 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36670 0x2B block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36670 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36670 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36670 0x2B: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36670 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36670 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C37010 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C37010 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C37010 count=558 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C37010 avail=558 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/img/browsers/safari.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C37010 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C37010 Currently 22 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C37010 id=0x3D concurrent=22 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C37010 Stream ID 0x3D [session=25499800] for URI /vrvweb/assets/img/browsers/safari.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C37010 depends on background group for trans 28C6B400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C37010 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C37010 Generating 72 bytes of HEADERS for stream 0x3D with priority weight 11 dep 0x7 frames 1 uri=/vrvweb/assets/img/browsers/safari.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C37010 used 558 of 558. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C37010 0x3D 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C37010 inline=85 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C37010 result 0 len=85 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=85 rv=0 actual=85 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C37010 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C37010 trans readsegments rv 0 read=558 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C37010 countread=558 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36780 0x2D block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36780 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36780 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36780 0x2D: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36780 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36780 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36890 0x2F block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36890 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36890 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36890 0x2F: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36890 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36890 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C369A0 0x31 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 0x31: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C369A0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C369A0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36AB0 0x33 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 0x33: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36AB0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36AB0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36BC0 0x35 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36BC0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36BC0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36BC0 0x35: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36BC0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36BC0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36CD0 0x37 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36CD0 0x37: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36CD0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36DE0 0x39 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36DE0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36DE0 0x39: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36DE0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36DE0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36EF0 0x3B block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 0x3B: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36EF0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C37010 0x3D block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C37010 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C37010 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C37010 0x3D: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C37010 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C37010 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=254055F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=28CA5920 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C371B0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C375F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C374E0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C373D0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C372C0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 288 flags 4 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x13 priorityLen=0 stream=28CA59A0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x13 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 28CA59A0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA59A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA59A0 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:51 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: zPVGmB0_ecXVg5Re2IAc5IJuZkyY2_4tlEmA4rdC7hiyeHsGuZM1Uw== +[19256:Socket Thread]: I/nsHttp age: 12 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:51 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: zPVGmB0_ecXVg5Re2IAc5IJuZkyY2_4tlEmA4rdC7hiyeHsGuZM1Uw== +[19256:Socket Thread]: I/nsHttp age: 12 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 711 flags 0 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x13 Stream Ptr 28CA59A0 Fin=0 Len=711 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x13 newbytes=711 unacked=711 localWindow=12582201 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=711 localWindow=12327799 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA59A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA59A0 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA59A0 count=32057 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x13 Stream Ptr 28CA59A0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA59A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA59A0 count=32057 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 28CA59A0 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x13 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x13 concurrent=22 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=28CA59A0 0x13 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 28CA59A0 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 28CA59A0 0x13 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x13 concurrent=21 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 28CA59A0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 281 flags 4 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x15 priorityLen=0 stream=28CA5AB0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x15 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 28CA5AB0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: text/css +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:42 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: viMMK2pZDomVqDw3J-IRCx8dRUSUGMV4DDLpcHrDDGdWUsjGwGZsFA== +[19256:Socket Thread]: I/nsHttp age: 12 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: text/css +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:42 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: viMMK2pZDomVqDw3J-IRCx8dRUSUGMV4DDLpcHrDDGdWUsjGwGZsFA== +[19256:Socket Thread]: I/nsHttp age: 12 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x15 Stream Ptr 28CA5AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x15 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12319607 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=24576 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x15 Stream Ptr 28CA5AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x15 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12311415 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=24576 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=16716 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=16692 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=16384 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x15 Stream Ptr 28CA5AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x15 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12303223 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=16384 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=8192 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x15 Stream Ptr 28CA5AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x15 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12295031 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=8192 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=350 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=326 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=24576 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6065 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x15 Stream Ptr 28CA5AB0 Fin=0 Len=6065 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x15 newbytes=6065 unacked=38833 localWindow=12544079 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6065 localWindow=12288966 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=26703 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x15 Stream Ptr 28CA5AB0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5AB0 count=26703 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 28CA5AB0 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x15 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x15 concurrent=21 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=28CA5AB0 0x15 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 28CA5AB0 0x15 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 28CA5AB0 0x15 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x15 concurrent=20 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 28CA5AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 290 flags 4 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x17 priorityLen=0 stream=28CA5BC0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x17 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 28CA5BC0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:34 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: FHCsKXShd3HoKf7yQWZCLg0PBDcyKfCaOgSNP7uDhDQlJfoUtPWjEw== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:34 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: FHCsKXShd3HoKf7yQWZCLg0PBDcyKfCaOgSNP7uDhDQlJfoUtPWjEw== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12280774 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12272582 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16725 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16701 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16384 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12264390 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16384 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=8192 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12256198 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=8192 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=359 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=335 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=335 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=335 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=335 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=335 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=335 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=335 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32433 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12248006 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12239814 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16761 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16737 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16384 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12231622 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16384 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=8192 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6896 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=6896 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=6896 unacked=64240 localWindow=12518672 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6896 localWindow=12224726 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=8192 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=1296 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=72432 localWindow=12510480 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12216534 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=1296 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=31472 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=80624 localWindow=12502288 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12208342 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=25872 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17722 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=17698 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 260EE800 serial=0x2 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 260EE800 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 260EE800 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EE800 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 260EE800 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 260EE800 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=260EE800 trans=00000000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 26130670 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=260EE800 stream=26130670 serial=2 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EE800 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EE800 mConnection=28C78EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EE800 sslsocketcontrol=28CA5920 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EE800 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EE800 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EE800 +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 will write from Http2Stream 26130670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 26130670 ReadSegments reader=260EE80C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 26130670 trans readsegments rv 80470002 read=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 260EE800 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EE800 may return FAIL code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 260EE800 26130670 0x0 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 260EE800 26130670 0x0 80470002 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 260EE800 id=0x0 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 26130670 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EE800 soft error override +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EE800 +[19256:Socket Thread]: I/nsHttp Http2Session 260EE800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32750 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=88816 localWindow=12494096 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12200150 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32750 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24558 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=97008 localWindow=12485904 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12191958 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24558 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16426 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32744 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 260EEC00 serial=0x3 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 260EEC00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 260EEC00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EEC00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 260EEC00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 260EEC00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=260EEC00 trans=00000000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=260EEC00 stream=25405EF0 serial=3 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EEC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EEC00 mConnection=28C78A90 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EEC00 sslsocketcontrol=25C371B0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EEC00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EEC00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EEC00 +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 will write from Http2Stream 25405EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405EF0 ReadSegments reader=260EEC0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405EF0 trans readsegments rv 80470002 read=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 260EEC00 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EEC00 may return FAIL code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 260EEC00 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 260EEC00 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 260EEC00 id=0x0 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EEC00 soft error override +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EEC00 +[19256:Socket Thread]: I/nsHttp Http2Session 260EEC00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32732 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=105200 localWindow=12477712 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12183766 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=113392 localWindow=12469520 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12175574 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16462 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16462 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16438 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 260EF000 serial=0x4 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 260EF000 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 260EF000 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF000 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 260EF000 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 260EF000 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=260EF000 trans=00000000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=260EF000 stream=25405EF0 serial=4 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF000 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF000 mConnection=28C78AA0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF000 sslsocketcontrol=25C375F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF000 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF000 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF000 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 will write from Http2Stream 25405EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405EF0 ReadSegments reader=260EF00C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405EF0 trans readsegments rv 80470002 read=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 260EF000 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF000 may return FAIL code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 260EF000 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 260EF000 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 260EF000 id=0x0 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF000 soft error override +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF000 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF000 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32714 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=121584 localWindow=12461328 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12167382 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32714 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24522 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8161 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8161 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8161 unacked=129745 localWindow=12453167 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8161 localWindow=12159221 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24522 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16426 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16402 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16361 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=137937 localWindow=12444975 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12151029 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=146129 localWindow=12436783 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12142837 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24576 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16426 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16402 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 260EF400 serial=0x5 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 260EF400 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 260EF400 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF400 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 260EF400 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 260EF400 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=260EF400 trans=00000000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=260EF400 stream=25405EF0 serial=5 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF400 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF400 mConnection=28CC5590 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF400 sslsocketcontrol=25C374E0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF400 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF400 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF400 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 will write from Http2Stream 25405EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405EF0 ReadSegments reader=260EF40C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405EF0 trans readsegments rv 80470002 read=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 260EF400 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF400 may return FAIL code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 260EF400 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 260EF400 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 260EF400 id=0x0 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF400 soft error override +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF400 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF400 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 260EF800 serial=0x6 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 260EF800 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 260EF800 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF800 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 260EF800 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 260EF800 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=260EF800 trans=00000000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=260EF800 stream=25405EF0 serial=6 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF800 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF800 mConnection=28CC56A0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF800 sslsocketcontrol=25C373D0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF800 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EF800 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF800 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 will write from Http2Stream 25405EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405EF0 ReadSegments reader=260EF80C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405EF0 trans readsegments rv 80470002 read=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 260EF800 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF800 may return FAIL code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 260EF800 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 260EF800 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 260EF800 id=0x0 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF800 soft error override +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EF800 +[19256:Socket Thread]: I/nsHttp Http2Session 260EF800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32750 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=154321 localWindow=12428591 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12134645 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32750 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24558 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=162513 localWindow=12420399 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12126453 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24558 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16426 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16402 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 260EFC00 serial=0x7 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 260EFC00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 260EFC00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EFC00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 260EFC00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 260EFC00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=260EFC00 trans=00000000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=260EFC00 stream=25405EF0 serial=7 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EFC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EFC00 mConnection=28CC5730 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EFC00 sslsocketcontrol=25C372C0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EFC00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 260EFC00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EFC00 +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 will write from Http2Stream 25405EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405EF0 ReadSegments reader=260EFC0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405EF0 trans readsegments rv 80470002 read=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 260EFC00 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EFC00 may return FAIL code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 260EFC00 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 260EFC00 25405EF0 0x0 80470002 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 260EFC00 id=0x0 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EFC00 soft error override +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 260EFC00 +[19256:Socket Thread]: I/nsHttp Http2Session 260EFC00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32732 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=170705 localWindow=12412207 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12118261 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32732 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24540 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=178897 localWindow=12404015 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12110069 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24540 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16426 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=16402 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32714 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=8192 unacked=187089 localWindow=12395823 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12101877 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32714 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24522 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 2587 flags 0 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=0 Len=2587 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x17 newbytes=2587 unacked=189676 localWindow=12393236 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=2587 localWindow=12099290 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=24522 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=21935 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x17 Stream Ptr 28CA5BC0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5BC0 count=32768 state=4 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 28CA5BC0 0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x17 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x17 concurrent=20 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=28CA5BC0 0x17 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 28CA5BC0 0x17 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 28CA5BC0 0x17 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x17 concurrent=19 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 28CA5BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 289 flags 4 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x19 priorityLen=0 stream=28CA5CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x19 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 28CA5CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:41 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Kb8UT7-5tM4T02uq891mouP_mYTEOQaOAbKYvdFB2RvsXA2GxmDSng== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:41 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:29 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Kb8UT7-5tM4T02uq891mouP_mYTEOQaOAbKYvdFB2RvsXA2GxmDSng== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x19 Stream Ptr 28CA5CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x19 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12091098 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=24576 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x19 Stream Ptr 28CA5CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x19 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12082906 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=24576 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=16724 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=16700 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32452 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x19 Stream Ptr 28CA5CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x19 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12074714 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32452 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=24260 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x19 Stream Ptr 28CA5CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x19 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12066522 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=24260 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=16426 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=16402 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32768 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32434 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x19 Stream Ptr 28CA5CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x19 newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12058330 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=32434 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=24242 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 5211 flags 0 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x19 Stream Ptr 28CA5CD0 Fin=0 Len=5211 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x19 newbytes=5211 unacked=46171 localWindow=12536741 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=5211 localWindow=12053119 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=24242 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=19031 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x19 Stream Ptr 28CA5CD0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5CD0 count=19031 state=4 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 28CA5CD0 0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x19 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x19 concurrent=19 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=28CA5CD0 0x19 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 28CA5CD0 0x19 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 28CA5CD0 0x19 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x19 concurrent=18 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 28CA5CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 289 flags 4 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x1B priorityLen=0 stream=28CA5DE0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x1B fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 28CA5DE0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:30 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 149kcmyCIOLkAFg4uhpBkFXhDycgjSx6RoO93pqUHJz1CHrAI4TAcA== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:30 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 149kcmyCIOLkAFg4uhpBkFXhDycgjSx6RoO93pqUHJz1CHrAI4TAcA== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12044927 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24576 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12036735 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24576 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16724 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16700 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16700 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32452 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12028543 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32452 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24260 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12020351 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24260 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16426 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16402 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32434 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12012159 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32434 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24242 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=12003967 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24242 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16426 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16402 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=16402 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32768 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32416 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11995775 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=32416 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24224 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 692 flags 0 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=0 Len=692 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1B newbytes=692 unacked=58036 localWindow=12524876 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=692 localWindow=11995083 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=24224 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=23532 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1B Stream Ptr 28CA5DE0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5DE0 count=23532 state=4 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 28CA5DE0 0x1B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x1b +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x1B concurrent=18 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=28CA5DE0 0x1B cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 28CA5DE0 0x1B 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 28CA5DE0 0x1b 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x1B concurrent=17 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 28CA5DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 288 flags 4 id 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x1D priorityLen=0 stream=28CA5EF0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x1D fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 28CA5EF0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5EF0 count=32768 state=4 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:47 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: teA0w_llSwe095poWU1kdCfC1M45duvKawkE4tr9_vyEHEDo62rLdw== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:47 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: teA0w_llSwe095poWU1kdCfC1M45duvKawkE4tr9_vyEHEDo62rLdw== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 1983 flags 0 id 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1D Stream Ptr 28CA5EF0 Fin=0 Len=1983 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1D newbytes=1983 unacked=1983 localWindow=12580929 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=1983 localWindow=11993100 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5EF0 count=32768 state=4 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5EF0 count=30785 state=4 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1D Stream Ptr 28CA5EF0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 28CA5EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 28CA5EF0 count=30785 state=4 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 28CA5EF0 0x1D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x1d +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x1D concurrent=17 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=28CA5EF0 0x1D cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 28CA5EF0 0x1D 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 28CA5EF0 0x1d 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x1D concurrent=16 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 28CA5EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 307 flags 4 id 0x1F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x1F priorityLen=0 stream=25C36010 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x1F fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36010 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36010 count=32768 state=4 0x1F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp content-length: 745 +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:57 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp etag: "b520b63b3f31757fa58822d70cae72b6" +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: ehiOE6Cl21uocA5KEPMxrSK_ZF7REEAkZcxGAyuJDL7xNC27eoDANA== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp content-length: 745 +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:57 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp etag: "b520b63b3f31757fa58822d70cae72b6" +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: ehiOE6Cl21uocA5KEPMxrSK_ZF7REEAkZcxGAyuJDL7xNC27eoDANA== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 745 flags 0 id 0x1F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1F Stream Ptr 25C36010 Fin=0 Len=745 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x1F newbytes=745 unacked=745 localWindow=12582167 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=745 localWindow=11992355 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36010 count=32768 state=4 0x1F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x1F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x1F Stream Ptr 25C36010 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x1f +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x1F concurrent=16 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x1F needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x1F to stream 25C36010 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36010 0x1F 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36010 0x1f 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x1F concurrent=15 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36010 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 314 flags 4 id 0x21 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x21 priorityLen=0 stream=25C36120 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x21 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36120 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36120 count=32768 state=4 0x21 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 2792 +[19256:Socket Thread]: I/nsHttp last-modified: Wed, 24 Jan 2018 23:49:49 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 22:23:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: d7d66be43f0ebadcdf0fc049e831472e +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: kBdUfhqMW9D_gWRKXuooRHokX5D3v0N8RRkv2IxKZsAraJZ57ZyV2w== +[19256:Socket Thread]: I/nsHttp age: 56859 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 2792 +[19256:Socket Thread]: I/nsHttp last-modified: Wed, 24 Jan 2018 23:49:49 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 22:23:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: d7d66be43f0ebadcdf0fc049e831472e +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: kBdUfhqMW9D_gWRKXuooRHokX5D3v0N8RRkv2IxKZsAraJZ57ZyV2w== +[19256:Socket Thread]: I/nsHttp age: 56859 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 2792 flags 0 id 0x21 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x21 Stream Ptr 25C36120 Fin=0 Len=2792 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x21 newbytes=2792 unacked=2792 localWindow=12580120 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=2792 localWindow=11989563 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36120 count=32768 state=4 0x21 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x21 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x21 Stream Ptr 25C36120 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x21 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x21 concurrent=15 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x21 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x21 to stream 25C36120 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36120 0x21 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36120 0x21 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x21 concurrent=14 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36120 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 314 flags 4 id 0x23 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x23 priorityLen=0 stream=25C36230 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x23 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36230 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36230 count=32768 state=4 0x23 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 3845 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 13 Nov 2018 08:01:16 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:34:53 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 1844d67a446ebafd5e77bf84dbb88a99 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: zxKDclf_SohVhDxtf8l2xyoCyWTrWUGxO2er4On93FRX1qDLVyLdcg== +[19256:Socket Thread]: I/nsHttp age: 77747 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 3845 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 13 Nov 2018 08:01:16 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:34:53 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 1844d67a446ebafd5e77bf84dbb88a99 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: zxKDclf_SohVhDxtf8l2xyoCyWTrWUGxO2er4On93FRX1qDLVyLdcg== +[19256:Socket Thread]: I/nsHttp age: 77747 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 3845 flags 0 id 0x23 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x23 Stream Ptr 25C36230 Fin=0 Len=3845 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x23 newbytes=3845 unacked=3845 localWindow=12579067 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=3845 localWindow=11985718 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36230 count=32768 state=4 0x23 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x23 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x23 Stream Ptr 25C36230 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x23 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x23 concurrent=14 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x23 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x23 to stream 25C36230 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36230 0x23 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36230 0x23 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x23 concurrent=13 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36230 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 313 flags 4 id 0x25 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x25 priorityLen=0 stream=25C36340 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x25 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36340 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36340 count=32768 state=4 0x25 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 3696 +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 22 Jan 2018 11:20:13 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 08:42:33 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 5a1ec33538e0dec4b8f1a3992e16e252 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: rU3giUgkEsYYLKXfHrZCX-qDSIPQAeMfSjXgiuTnsEgWAP6esvqAeQ== +[19256:Socket Thread]: I/nsHttp age: 19734 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 3696 +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 22 Jan 2018 11:20:13 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 08:42:33 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 5a1ec33538e0dec4b8f1a3992e16e252 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: rU3giUgkEsYYLKXfHrZCX-qDSIPQAeMfSjXgiuTnsEgWAP6esvqAeQ== +[19256:Socket Thread]: I/nsHttp age: 19734 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 3696 flags 0 id 0x25 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x25 Stream Ptr 25C36340 Fin=0 Len=3696 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x25 newbytes=3696 unacked=3696 localWindow=12579216 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=3696 localWindow=11982022 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36340 count=32768 state=4 0x25 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x25 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x25 Stream Ptr 25C36340 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x25 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x25 concurrent=13 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x25 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x25 to stream 25C36340 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36340 0x25 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36340 0x25 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x25 concurrent=12 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36340 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 312 flags 4 id 0x27 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x27 priorityLen=0 stream=25C36450 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x27 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36450 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36450 count=32768 state=4 0x27 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 4082 +[19256:Socket Thread]: I/nsHttp last-modified: Wed, 24 Jan 2018 02:51:15 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:51:49 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: c39e3dfa590cbd4f6381b562b5acf4aa +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: B2iBlvbUchFt7YMWw7h6rjIfZKn0RNa3SEjit-H26L57YUxu9k2S0g== +[19256:Socket Thread]: I/nsHttp age: 76731 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 4082 +[19256:Socket Thread]: I/nsHttp last-modified: Wed, 24 Jan 2018 02:51:15 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:51:49 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: c39e3dfa590cbd4f6381b562b5acf4aa +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: B2iBlvbUchFt7YMWw7h6rjIfZKn0RNa3SEjit-H26L57YUxu9k2S0g== +[19256:Socket Thread]: I/nsHttp age: 76731 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 4082 flags 0 id 0x27 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x27 Stream Ptr 25C36450 Fin=0 Len=4082 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x27 newbytes=4082 unacked=4082 localWindow=12578830 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=4082 localWindow=11977940 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36450 count=32768 state=4 0x27 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x27 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x27 Stream Ptr 25C36450 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x27 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x27 concurrent=12 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x27 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x27 to stream 25C36450 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36450 0x27 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36450 0x27 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x27 concurrent=11 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36450 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 314 flags 4 id 0x29 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x29 priorityLen=0 stream=25C36560 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x29 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36560 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36560 count=32768 state=4 0x29 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 1005 +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 01 Nov 2018 16:05:45 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:34:53 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 0f18938b09a4b7415d30a04f1cb9bf83 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: COfG4QIxzoCRDrYM8Gg_X-RSx7XpR0dbhRrJ-P_t8skUQCnXdgu7wA== +[19256:Socket Thread]: I/nsHttp age: 77747 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 1005 +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 01 Nov 2018 16:05:45 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:34:53 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 0f18938b09a4b7415d30a04f1cb9bf83 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: COfG4QIxzoCRDrYM8Gg_X-RSx7XpR0dbhRrJ-P_t8skUQCnXdgu7wA== +[19256:Socket Thread]: I/nsHttp age: 77747 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 1005 flags 0 id 0x29 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x29 Stream Ptr 25C36560 Fin=0 Len=1005 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x29 newbytes=1005 unacked=1005 localWindow=12581907 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=1005 localWindow=11976935 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36560 count=32768 state=4 0x29 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x29 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x29 Stream Ptr 25C36560 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x29 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x29 concurrent=11 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x29 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x29 to stream 25C36560 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36560 0x29 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36560 0x29 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x29 concurrent=10 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36560 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 313 flags 4 id 0x2B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x2B priorityLen=0 stream=25C36670 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x2B fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36670 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36670 count=32768 state=4 0x2B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 5155 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 28 Aug 2018 04:33:26 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:27:06 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 3b36e7019f8fc4ae8e764e3a1d3656ae +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: u8HshGe9wdmSGXTL5rDEDpTodk9d8Cv0WnUHfeL0ymb63QKAtznzEQ== +[19256:Socket Thread]: I/nsHttp age: 78214 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 5155 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 28 Aug 2018 04:33:26 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:27:06 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 3b36e7019f8fc4ae8e764e3a1d3656ae +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: u8HshGe9wdmSGXTL5rDEDpTodk9d8Cv0WnUHfeL0ymb63QKAtznzEQ== +[19256:Socket Thread]: I/nsHttp age: 78214 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 5155 flags 0 id 0x2B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x2B Stream Ptr 25C36670 Fin=0 Len=5155 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x2B newbytes=5155 unacked=5155 localWindow=12577757 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=5155 localWindow=11971780 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36670 count=32768 state=4 0x2B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x2B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x2B Stream Ptr 25C36670 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x2b +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x2B concurrent=10 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x2B needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x2B to stream 25C36670 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36670 0x2B 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36670 0x2b 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x2B concurrent=9 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36670 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 314 flags 4 id 0x2D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x2D priorityLen=0 stream=25C36780 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x2D fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36780 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36780 count=32768 state=4 0x2D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 4263 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:34:54 GMT +[19256:Socket Thread]: I/nsHttp etag: 8f6c33390b9e4896a7e7cb5461e350ab +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 23 Jan 2018 10:07:14 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 3TSz2V3qwCkLXCvG5wBZM8Ee9s7i9EARThcxidPSZasXVjpF5ndd5A== +[19256:Socket Thread]: I/nsHttp age: 77746 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 4263 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:34:54 GMT +[19256:Socket Thread]: I/nsHttp etag: 8f6c33390b9e4896a7e7cb5461e350ab +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 23 Jan 2018 10:07:14 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 3TSz2V3qwCkLXCvG5wBZM8Ee9s7i9EARThcxidPSZasXVjpF5ndd5A== +[19256:Socket Thread]: I/nsHttp age: 77746 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 4263 flags 0 id 0x2D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x2D Stream Ptr 25C36780 Fin=0 Len=4263 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x2D newbytes=4263 unacked=4263 localWindow=12578649 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=4263 localWindow=11967517 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36780 count=32768 state=4 0x2D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x2D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x2D Stream Ptr 25C36780 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x2d +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x2D concurrent=9 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x2D needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x2D to stream 25C36780 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36780 0x2D 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36780 0x2d 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x2D concurrent=8 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36780 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 315 flags 4 id 0x2F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x2F priorityLen=0 stream=25C36890 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x2F fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36890 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36890 count=32768 state=4 0x2F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 2616 +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 22 Jan 2018 21:45:21 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:51:14 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 55e9b9a58bc8dbfe71a9da75211f76bd +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: HFhhyPb5LFzTJCWuR27N5LLgJJgRkZZ3RxOlQRoLYZ6Hj4nOpdhmmg== +[19256:Socket Thread]: I/nsHttp age: 76766 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 2616 +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 22 Jan 2018 21:45:21 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 16:51:14 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp etag: 55e9b9a58bc8dbfe71a9da75211f76bd +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: HFhhyPb5LFzTJCWuR27N5LLgJJgRkZZ3RxOlQRoLYZ6Hj4nOpdhmmg== +[19256:Socket Thread]: I/nsHttp age: 76766 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 2616 flags 0 id 0x2F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x2F Stream Ptr 25C36890 Fin=0 Len=2616 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x2F newbytes=2616 unacked=2616 localWindow=12580296 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=2616 localWindow=11964901 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36890 count=32768 state=4 0x2F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x2F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x2F Stream Ptr 25C36890 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x2f +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x2F concurrent=8 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x2F needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x2F to stream 25C36890 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36890 0x2F 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36890 0x2f 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x2F concurrent=7 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36890 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 306 flags 4 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x31 priorityLen=0 stream=25C369A0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x31 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C369A0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Fri, 10 Jan 2020 12:27:39 GMT +[19256:Socket Thread]: I/nsHttp etag: 4e36e3f44041cdd1b687b47870803765 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 29 Sep 2019 17:00:59 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Hf6hIyz5u5k4G5lD-pjDs1EX_u2KighpDqp2mlQp4B72TrtazSVjxQ== +[19256:Socket Thread]: I/nsHttp age: 32204 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Fri, 10 Jan 2020 12:27:39 GMT +[19256:Socket Thread]: I/nsHttp etag: 4e36e3f44041cdd1b687b47870803765 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 29 Sep 2019 17:00:59 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Hf6hIyz5u5k4G5lD-pjDs1EX_u2KighpDqp2mlQp4B72TrtazSVjxQ== +[19256:Socket Thread]: I/nsHttp age: 32204 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11956709 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11948517 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16741 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16717 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16717 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32435 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11940325 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11932133 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24951 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24927 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32417 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11923941 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11915749 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16777 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16753 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/x-javascript +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Last-Modified: Thu, 09 Jan 2020 18:35:21 GMT +[19256:Socket Thread]: I/nsHttp Server: AmazonS3 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sat, 11 Jan 2020 19:08:17 GMT +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: aLVoSfJnc9_5KUB_p8Be68R7pN2Z0HKuHKqXQPvffBJWUqyPn3DhiQ== +[19256:Socket Thread]: I/nsHttp Age: 110256 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/x-javascript +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Last-Modified: Thu, 09 Jan 2020 18:35:21 GMT +[19256:Socket Thread]: I/nsHttp Server: AmazonS3 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sat, 11 Jan 2020 19:08:17 GMT +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: aLVoSfJnc9_5KUB_p8Be68R7pN2Z0HKuHKqXQPvffBJWUqyPn3DhiQ== +[19256:Socket Thread]: I/nsHttp Age: 110256 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32399 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11907557 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6956 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=6956 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=6956 unacked=64300 localWindow=12518612 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6956 localWindow=11900601 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25812 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=8192 unacked=72492 localWindow=12510420 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11892409 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 2103 flags 0 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=0 Len=2103 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x31 newbytes=2103 unacked=74595 localWindow=12508317 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=2103 localWindow=11890306 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=30665 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x31 Stream Ptr 25C369A0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 25C369A0 0x31 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x31 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x31 concurrent=7 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=25C369A0 0x31 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C369A0 0x31 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C369A0 0x31 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x31 concurrent=6 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 298 flags 4 id 0x35 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x35 priorityLen=0 stream=25C36BC0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x35 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36BC0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36BC0 count=32768 state=4 0x35 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 476 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp etag: "74334d1a83053c092649fc13e4398702" +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: KS3gEprILyVB_6-DcztWSdIfDUgiHDHdvdsi661lcbjdqSp9w7EODg== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 476 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:30 GMT +[19256:Socket Thread]: I/nsHttp etag: "74334d1a83053c092649fc13e4398702" +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: KS3gEprILyVB_6-DcztWSdIfDUgiHDHdvdsi661lcbjdqSp9w7EODg== +[19256:Socket Thread]: I/nsHttp age: 11 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 476 flags 0 id 0x35 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x35 Stream Ptr 25C36BC0 Fin=0 Len=476 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x35 newbytes=476 unacked=476 localWindow=12582436 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=476 localWindow=11889830 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36BC0 count=32768 state=4 0x35 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x35 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x35 Stream Ptr 25C36BC0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x35 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x35 concurrent=6 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x35 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x35 to stream 25C36BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36BC0 0x35 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36BC0 0x35 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x35 concurrent=5 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 295 flags 4 id 0x3B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x3B priorityLen=0 stream=25C36EF0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x3B fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36EF0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x3B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 622 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "47a96a4bdb2aef972c6b94e3325ab35a" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: lQ-76fmYT5-40XkmzA8baXcgwxIlso2n3yU6hnkh36Q58J27TIHa0g== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 622 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "47a96a4bdb2aef972c6b94e3325ab35a" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: lQ-76fmYT5-40XkmzA8baXcgwxIlso2n3yU6hnkh36Q58J27TIHa0g== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 622 flags 0 id 0x3B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x3B Stream Ptr 25C36EF0 Fin=0 Len=622 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x3B newbytes=622 unacked=622 localWindow=12582290 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=622 localWindow=11889208 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x3B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x3B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x3B Stream Ptr 25C36EF0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x3b +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x3B concurrent=5 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x3B needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x3B to stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36EF0 0x3B 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36EF0 0x3b 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x3B concurrent=4 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 260EE800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EE800 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 260EE800 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 260EEC00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EEC00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 260EEC00 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 260EF000 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF000 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 260EF000 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 260EF400 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF400 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 260EF400 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 260EF800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EF800 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 260EF800 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 260EFC00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 260EFC00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 260EFC00 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/320x180/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C369A0 serial=1 NextID=0x3F (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C369A0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C369A0 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C369A0 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/320x180/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C369A0 Currently 5 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C369A0 id=0x3F concurrent=5 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 Stream ID 0x3F [session=25499800] for URI /imgsrv/display/thumbnail/320x180/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C369A0 depends on background group for trans 25493000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C369A0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 Generating 105 bytes of HEADERS for stream 0x3F with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/320x180/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C369A0 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C369A0 0x3F 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C369A0 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C369A0 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C369A0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C369A0 countread=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C369A0 0x3F block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 0x3F: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C369A0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C369A0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 296 flags 4 id 0x3D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x3D priorityLen=0 stream=25C37010 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x3D fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C37010 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C37010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C37010 count=32768 state=4 0x3D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 887 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "c6976dfc6f2679eeda506c368ed6c866" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: -XYfG3scc22pcOJbmpND30OEoGKDLXMVecEicrDq_uX90V9wgObIZQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 887 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "c6976dfc6f2679eeda506c368ed6c866" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: -XYfG3scc22pcOJbmpND30OEoGKDLXMVecEicrDq_uX90V9wgObIZQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 887 flags 0 id 0x3D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x3D Stream Ptr 25C37010 Fin=0 Len=887 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x3D newbytes=887 unacked=887 localWindow=12582025 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=887 localWindow=11888321 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C37010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C37010 count=32768 state=4 0x3D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x3D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x3D Stream Ptr 25C37010 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C37010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x3d +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x3D concurrent=5 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x3D needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x3D to stream 25C37010 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C37010 0x3D 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C37010 0x3d 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x3D concurrent=4 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C37010 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 296 flags 4 id 0x37 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x37 priorityLen=0 stream=25C36CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x37 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=32768 state=4 0x37 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 746 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "cde2d0badb8dd2dd5146b1aaffb36c19" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 3qRCCRJ_6Ywf9YbsPkBOzErPU5M71g0ROGUjv7ZQXxAsSogLiRkDAQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 746 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "cde2d0badb8dd2dd5146b1aaffb36c19" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 3qRCCRJ_6Ywf9YbsPkBOzErPU5M71g0ROGUjv7ZQXxAsSogLiRkDAQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 746 flags 0 id 0x37 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x37 Stream Ptr 25C36CD0 Fin=0 Len=746 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x37 newbytes=746 unacked=746 localWindow=12582166 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=746 localWindow=11887575 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=32768 state=4 0x37 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x37 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x37 Stream Ptr 25C36CD0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x37 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x37 concurrent=4 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x37 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x37 to stream 25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36CD0 0x37 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36CD0 0x37 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x37 concurrent=3 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 297 flags 4 id 0x39 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x39 priorityLen=0 stream=25C36DE0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x39 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36DE0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=32768 state=4 0x39 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 751 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "c6705f3258c116a7b166d52675b77cad" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 2GX6mtdFNop3aXVpjPlAKRWTuRuPiV_UAjzjspRZB4LdZog8JIwyIA== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 751 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "c6705f3258c116a7b166d52675b77cad" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 2GX6mtdFNop3aXVpjPlAKRWTuRuPiV_UAjzjspRZB4LdZog8JIwyIA== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 751 flags 0 id 0x39 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x39 Stream Ptr 25C36DE0 Fin=0 Len=751 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x39 newbytes=751 unacked=751 localWindow=12582161 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=751 localWindow=11886824 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=32768 state=4 0x39 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x39 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x39 Stream Ptr 25C36DE0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x39 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x39 concurrent=3 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x39 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x39 to stream 25C36DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36DE0 0x39 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36DE0 0x39 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x39 concurrent=2 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 299 flags 4 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x33 priorityLen=0 stream=25C36AB0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x33 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36AB0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 239784 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "055bdd50fecfb0f7ecaaa61a846102d0" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: WG-3dce0hrFomP41whRXrX9bqLzZWuaLeKa1uIVPDPlRdRuINOPl3A== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 239784 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp etag: "055bdd50fecfb0f7ecaaa61a846102d0" +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: WG-3dce0hrFomP41whRXrX9bqLzZWuaLeKa1uIVPDPlRdRuINOPl3A== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11878632 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11870440 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16734 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16710 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16384 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11862248 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16384 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=8192 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11854056 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=8192 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=368 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=344 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32424 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11845864 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11837672 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16770 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16746 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16384 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11829480 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16384 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=8192 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6368 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=6368 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=6368 unacked=63712 localWindow=12519200 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6368 localWindow=11823112 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=8192 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=71904 localWindow=12511008 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11814920 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=30944 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=80096 localWindow=12502816 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11806728 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=26400 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18250 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=88288 localWindow=12494624 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11798536 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=96480 localWindow=12486432 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11790344 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1884 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=104672 localWindow=12478240 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11782152 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=30944 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=112864 localWindow=12470048 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11773960 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=26400 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18286 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=121056 localWindow=12461856 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11765768 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=129248 localWindow=12453664 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11757576 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1920 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1896 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=137440 localWindow=12445472 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11749384 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=30944 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=145632 localWindow=12437280 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11741192 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=26400 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18250 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=153824 localWindow=12429088 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11733000 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=162016 localWindow=12420896 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11724808 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1884 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=170208 localWindow=12412704 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11716616 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=30944 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=178400 localWindow=12404512 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11708424 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=26400 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18286 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18262 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=186592 localWindow=12396320 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11700232 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=194784 localWindow=12388128 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11692040 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1920 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1896 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=202976 localWindow=12379936 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11683848 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=30944 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=211168 localWindow=12371744 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11675656 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=26400 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18250 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18226 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=219360 localWindow=12363552 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11667464 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=18208 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=227552 localWindow=12355360 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11659272 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=10016 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1884 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1860 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=8192 unacked=235744 localWindow=12347168 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11651080 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=1824 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=30944 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 4040 flags 0 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=0 Len=4040 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x33 newbytes=4040 unacked=239784 localWindow=12343128 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=4040 localWindow=11647040 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=26400 state=4 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x33 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x33 Stream Ptr 25C36AB0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x33 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x33 concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x33 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x33 to stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36AB0 0x33 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36AB0 0x33 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x33 concurrent=1 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 372 flags 4 id 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x3F priorityLen=0 stream=25C369A0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x3F fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C369A0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 8368 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 14:47:02 GMT +[19256:Socket Thread]: I/nsHttp etag: 82be1a7107f6276e2b2d30161ccd020a +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 24 Sep 2019 20:17:16 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-edge-o15-rid: 8iUrPjVmAZCJUTk_20LxbBjUEMTX90TSeU3Dx7NxmqDjCNqV4MIjpQ== +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 1QW0xuXQn1v3ah41Sct5CqdANs-eGg-zL4ntJuJaEQGtPnzAVFH2iA== +[19256:Socket Thread]: I/nsHttp age: 84218 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 8368 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 14:47:02 GMT +[19256:Socket Thread]: I/nsHttp etag: 82be1a7107f6276e2b2d30161ccd020a +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 24 Sep 2019 20:17:16 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-edge-o15-rid: 8iUrPjVmAZCJUTk_20LxbBjUEMTX90TSeU3Dx7NxmqDjCNqV4MIjpQ== +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 1QW0xuXQn1v3ah41Sct5CqdANs-eGg-zL4ntJuJaEQGtPnzAVFH2iA== +[19256:Socket Thread]: I/nsHttp age: 84218 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x3F Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x3F newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11638848 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 176 flags 0 id 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x3F Stream Ptr 25C369A0 Fin=0 Len=176 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x3F newbytes=176 unacked=8368 localWindow=12574544 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=176 localWindow=11638672 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x3F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x3F Stream Ptr 25C369A0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x3f +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x3F concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x3F needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x3F to stream 25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C369A0 0x3F 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C369A0 0x3f 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x3F concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C369A0 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/fonts/Rubik/Rubik-Regular.ttf HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/font-woff2;q=1.0,application/font-woff;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vrvweb/build/main.6747c5ad06d501193bbe.css +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/assets/fonts/MarkPro/MarkPro-Medium.otf HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp Accept: application/font-woff2;q=1.0,application/font-woff;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vrvweb/build/main.6747c5ad06d501193bbe.css +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C369A0 serial=1 NextID=0x41 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C369A0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C369A0 count=442 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C369A0 avail=442 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/fonts/Rubik/Rubik-Regular.ttf requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C369A0 Currently 1 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C369A0 id=0x41 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 Stream ID 0x41 [session=25499800] for URI /vrvweb/assets/fonts/Rubik/Rubik-Regular.ttf +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C369A0 depends on background group for trans 25491C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C369A0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 Generating 174 bytes of HEADERS for stream 0x41 with priority weight 31 dep 0x7 frames 1 uri=/vrvweb/assets/fonts/Rubik/Rubik-Regular.ttf +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C369A0 used 442 of 442. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C369A0 0x41 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C369A0 inline=187 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C369A0 result 0 len=187 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=187 rv=0 actual=187 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C369A0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 trans readsegments rv 0 read=442 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C369A0 countread=442 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C369A0 0x41 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C369A0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C369A0 0x41: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C369A0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C369A0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36AB0 serial=1 NextID=0x43 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36AB0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36AB0 count=445 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36AB0 avail=445 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/assets/fonts/MarkPro/MarkPro-Medium.otf requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36AB0 Currently 2 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36AB0 id=0x43 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 Stream ID 0x43 [session=25499800] for URI /vrvweb/assets/fonts/MarkPro/MarkPro-Medium.otf +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36AB0 depends on background group for trans 25493C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36AB0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 Generating 60 bytes of HEADERS for stream 0x43 with priority weight 31 dep 0x7 frames 1 uri=/vrvweb/assets/fonts/MarkPro/MarkPro-Medium.otf +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36AB0 used 445 of 445. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36AB0 0x43 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36AB0 inline=73 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36AB0 result 0 len=73 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=73 rv=0 actual=73 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36AB0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 trans readsegments rv 0 read=445 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36AB0 countread=445 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36AB0 0x43 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 0x43: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36AB0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36AB0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/watch.42d61b691eda0d14e189.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25C36EF0 serial=1 NextID=0x45 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36EF0 count=563 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36EF0 avail=563 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/watch.42d61b691eda0d14e189.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25C36EF0 Currently 3 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25C36EF0 id=0x45 concurrent=3 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Stream ID 0x45 [session=25499800] for URI /vrvweb/build/watch.42d61b691eda0d14e189.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on background group for trans 25491800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Generating 76 bytes of HEADERS for stream 0x45 with priority weight 21 dep 0x7 frames 1 uri=/vrvweb/build/watch.42d61b691eda0d14e189.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36EF0 used 563 of 563. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36EF0 0x45 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36EF0 inline=89 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25C36EF0 result 0 len=89 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=89 rv=0 actual=89 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=563 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36EF0 countread=563 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25C36EF0 0x45 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 0x45: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25C36EF0 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /analytics.js/v1/SIeNJozAqhQxDdHOOY6mvnSKKzHo1BvJ/analytics.min.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: cdn.segment.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/index HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/index HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 416 flags 4 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x41 priorityLen=0 stream=25C369A0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x41 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C369A0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/font-sfnt +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp access-control-allow-methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp access-control-allow-credentials: true +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:34 GMT +[19256:Socket Thread]: I/nsHttp vary: Origin,Access-Control-Request-Headers,Access-Control-Request-Method +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Fb_0qiM2f9IB_DQnNYXQc4m_vZUOsqEoCtdc_tkIoxwLEu3HSXVoFg== +[19256:Socket Thread]: I/nsHttp age: 7 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/font-sfnt +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp access-control-allow-methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp access-control-allow-credentials: true +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:06 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:34 GMT +[19256:Socket Thread]: I/nsHttp vary: Origin,Access-Control-Request-Headers,Access-Control-Request-Method +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Fb_0qiM2f9IB_DQnNYXQc4m_vZUOsqEoCtdc_tkIoxwLEu3HSXVoFg== +[19256:Socket Thread]: I/nsHttp age: 7 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11630480 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11622288 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16851 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16827 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=16827 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32325 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11614096 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11605904 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25061 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25037 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25037 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25037 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32307 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11597712 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11589520 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25079 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25055 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=25055 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32289 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11581328 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6334 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=6334 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=6334 unacked=63678 localWindow=12519234 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6334 localWindow=11574994 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=18242 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=71870 localWindow=12511042 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11566802 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=80062 localWindow=12502850 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11558610 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24618 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24594 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32750 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=88254 localWindow=12494658 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11550418 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=8192 unacked=96446 localWindow=12486466 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11542226 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=32768 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24636 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24612 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24612 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 1669 flags 0 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=0 Len=1669 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x41 newbytes=1669 unacked=98115 localWindow=12484797 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=1669 localWindow=11540557 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=24576 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=22907 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x41 Stream Ptr 25C369A0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C369A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C369A0 count=22907 state=4 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 25C369A0 0x41 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x41 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x41 concurrent=3 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=25C369A0 0x41 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C369A0 0x41 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C369A0 0x41 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x41 concurrent=2 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C369A0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 476 flags 4 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x43 priorityLen=0 stream=25C36AB0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x43 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36AB0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/vnd.oasis.opendocument.formula-template +[19256:Socket Thread]: I/nsHttp content-length: 109632 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp access-control-allow-methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp access-control-allow-credentials: true +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:05 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:34 GMT +[19256:Socket Thread]: I/nsHttp etag: "8a60ddb76cfb77dff975abaf06c64d0e" +[19256:Socket Thread]: I/nsHttp vary: Origin,Access-Control-Request-Headers,Access-Control-Request-Method +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: mCnwiKrSP_hydPjekh_zE3QigVYhHOMBl2rDIy5CVrpkwd3ytQ1YIA== +[19256:Socket Thread]: I/nsHttp age: 7 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/vnd.oasis.opendocument.formula-template +[19256:Socket Thread]: I/nsHttp content-length: 109632 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp access-control-allow-methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp access-control-allow-credentials: true +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 19 Nov 2019 18:21:05 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:34 GMT +[19256:Socket Thread]: I/nsHttp etag: "8a60ddb76cfb77dff975abaf06c64d0e" +[19256:Socket Thread]: I/nsHttp vary: Origin,Access-Control-Request-Headers,Access-Control-Request-Method +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: mCnwiKrSP_hydPjekh_zE3QigVYhHOMBl2rDIy5CVrpkwd3ytQ1YIA== +[19256:Socket Thread]: I/nsHttp age: 7 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11532365 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11524173 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16911 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16887 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32265 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11515981 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 4384 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=4384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=4384 unacked=28960 localWindow=12553952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=4384 localWindow=11511597 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=28384 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=37152 localWindow=12545760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11503405 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=45344 localWindow=12537568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11495213 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24618 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24594 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32750 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=53536 localWindow=12529376 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11487021 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=61728 localWindow=12521184 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11478829 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24636 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24612 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32732 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=69920 localWindow=12512992 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11470637 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=78112 localWindow=12504800 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11462445 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24654 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32744 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32714 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=86304 localWindow=12496608 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11454253 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=94496 localWindow=12488416 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11446061 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16480 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16456 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16384 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=8192 unacked=102688 localWindow=12480224 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11437869 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6944 flags 0 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=0 Len=6944 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x43 newbytes=6944 unacked=109632 localWindow=12473280 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6944 localWindow=11430925 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x43 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x43 Stream Ptr 25C36AB0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x43 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x43 concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x43 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x43 to stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36AB0 0x43 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36AB0 0x43 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x43 concurrent=1 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 287 flags 4 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x45 priorityLen=0 stream=25C36EF0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x45 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36EF0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:59 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 31ERDEScbZhEWeaXw-LliVv-JCi-8ogOG7bg_YmAlakJDJf_6BrgcQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:59 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 31ERDEScbZhEWeaXw-LliVv-JCi-8ogOG7bg_YmAlakJDJf_6BrgcQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11422733 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24576 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11414541 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24576 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16722 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16698 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16698 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16698 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32454 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11406349 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32454 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24262 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11398157 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24262 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16426 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16402 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32436 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11389965 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32436 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24244 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11381773 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24244 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16426 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16402 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16402 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16402 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32418 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11373581 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32418 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24226 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6924 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=6924 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=6924 unacked=64268 localWindow=12518644 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6924 localWindow=11366657 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24226 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=17302 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=72460 localWindow=12510452 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11358465 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24576 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=80652 localWindow=12502260 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11350273 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24576 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16426 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16402 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32750 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=88844 localWindow=12494068 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11342081 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32750 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24558 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=97036 localWindow=12485876 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11333889 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24558 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16426 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16402 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32732 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=8192 unacked=105228 localWindow=12477684 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11325697 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32732 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24540 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 3725 flags 0 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=0 Len=3725 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x45 newbytes=3725 unacked=108953 localWindow=12473959 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=3725 localWindow=11321972 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=24540 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=20815 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x45 Stream Ptr 25C36EF0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=20815 state=4 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 25C36EF0 0x45 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x45 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x45 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=25C36EF0 0x45 cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25C36EF0 0x45 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25C36EF0 0x45 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x45 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C36A30 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C372C0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C375F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C374E0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C373D0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 26210400 serial=0x8 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 26210400 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 26210400 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=26210400 trans=06154800 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=26210400 stream=25C36AB0 serial=8 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 26210400 mConnection=26048CA0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 26210400 sslsocketcontrol=25C36A30 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 26210400 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 26210400 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 will write from Http2Stream 25C36AB0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 ReadSegments reader=2621040C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36AB0 count=371 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36AB0 avail=371 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=26210400 key=https://cdn.segment.com/[]/[http2.8]/analytics.js/v1/SIeNJozAqhQxDdHOOY6mvnSKKzHo1BvJ/analytics.min.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 26210400 stream=25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 26210400 counting stream 25C36AB0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=26210400 stream=25C36AB0 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 Stream ID 0xF [session=26210400] for URI /analytics.js/v1/SIeNJozAqhQxDdHOOY6mvnSKKzHo1BvJ/analytics.min.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36AB0 depends on background group for trans 06154800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36AB0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 Generating 221 bytes of HEADERS for stream 0xF with priority weight 21 dep 0x7 frames 1 uri=/analytics.js/v1/SIeNJozAqhQxDdHOOY6mvnSKKzHo1BvJ/analytics.min.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36AB0 used 371 of 371. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36AB0 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36AB0 inline=234 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 26210400 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=26210400 stream=25C36AB0 result 0 len=234 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 26210400 sz=234 rv=0 actual=234 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36AB0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 trans readsegments rv 0 read=371 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 26210400 stream=25C36AB0 countread=371 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 will write from Http2Stream 25C36AB0 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36AB0 ReadSegments reader=2621040C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36AB0 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36AB0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 26210400 stream=25C36AB0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 26210400 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 128 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16777215 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 26210400 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 26210400 len=2147418112 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 26210400 session window 65535 increased by 2147418112 now 2147483647. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 26210400 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 1 data len 500 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 26210400 stream 0xF priorityLen=0 stream=25C36AB0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 26210400 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36AB0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp content-length: 79122 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp access-control-allow-methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp access-control-max-age: 3000 +[19256:Socket Thread]: I/nsHttp x-amz-replication-status: COMPLETED +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 10 Jan 2020 17:24:04 GMT +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp x-amz-version-id: rIM6kZvr1IrStmS.8YqYKE2HBxuV4426 +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp etag: "91ab3766a0a113979594a9a2fbc8c9d2" +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=300 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 0abfc04b3868b6760be5e12dccdfc7d4.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: gXa3HIfGNO3wtzZineWbqK2xWiuk6tm1fNqg2i2RHziFWBZahyosrg== +[19256:Socket Thread]: I/nsHttp age: 195 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp content-length: 79122 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp access-control-allow-methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp access-control-max-age: 3000 +[19256:Socket Thread]: I/nsHttp x-amz-replication-status: COMPLETED +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 10 Jan 2020 17:24:04 GMT +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp x-amz-version-id: rIM6kZvr1IrStmS.8YqYKE2HBxuV4426 +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp etag: "91ab3766a0a113979594a9a2fbc8c9d2" +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=300 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 0abfc04b3868b6760be5e12dccdfc7d4.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: gXa3HIfGNO3wtzZineWbqK2xWiuk6tm1fNqg2i2RHziFWBZahyosrg== +[19256:Socket Thread]: I/nsHttp age: 195 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16935 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16911 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32241 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32241 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24049 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24049 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16426 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16402 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32223 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32223 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24031 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24031 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16426 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16402 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32205 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32205 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24013 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 7072 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=7072 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=7072 unacked=64416 localWindow=12518496 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=7072 localWindow=12518496 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24013 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=16941 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 8192 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=8192 unacked=72608 localWindow=12510304 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=8192 localWindow=12510304 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 6514 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=0 Len=6514 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=26210400 id=0xF newbytes=6514 unacked=79122 localWindow=12503790 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=26210400 newbytes=6514 localWindow=12503790 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36AB0 count=24576 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=26210400 Stream ID 0xF Stream Ptr 25C36AB0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 26210400 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=26210400 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 26210400 by ID 0xF to stream 25C36AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 26210400 25C36AB0 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 26210400 25C36AB0 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 26210400 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36AB0 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /uwt.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.ads-twitter.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /en_US/fbevents.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: connect.facebook.net +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /bat.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: bat.bing.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: MUID=28AB4EBA3736605C0C3F4091333663A0; MR=0; MUIDB=28AB4EBA3736605C0C3F4091333663A0 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /pagead/conversion_async.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.googleadservices.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /analytics.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.google-analytics.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: lVaRBmUHUtJD8AO16hZeZoXt9qXzSVmgU8zjYTKL9ARTZWjripK_ow== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: lVaRBmUHUtJD8AO16hZeZoXt9qXzSVmgU8zjYTKL9ARTZWjripK_ow== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/index HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=261B8810 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C371B0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=261B8920 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=261B8A30 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C370A0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /gts1o1 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.pki.goog +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 84 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: DGlVlmub6rGGKJQGOckCp7ljTHATWyHIj8c6evvBojx0TY6dvMFR6g== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: DGlVlmub6rGGKJQGOckCp7ljTHATWyHIj8c6evvBojx0TY6dvMFR6g== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/index HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /gts1o1 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.pki.goog +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Edge-O15-RID: r8L3ovM0O1C3NtPGx-W9bucq4JToBhK6qzV5BH6PtMr-Nun5i5uLCw== +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: FBLtf1Mjv2D48BZ4wqlKTGEVkhQxb9gtQMesmxJ1WObS0juDArCAVQ== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Edge-O15-RID: r8L3ovM0O1C3NtPGx-W9bucq4JToBhK6qzV5BH6PtMr-Nun5i5uLCw== +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: FBLtf1Mjv2D48BZ4wqlKTGEVkhQxb9gtQMesmxJ1WObS0juDArCAVQ== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/index?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /disc/private/v1/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/6182099/index?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Rpc2NcL3ByaXZhdGVcL3Y~XC9VU1wvTTNcL2Jvb21lcmFuZyxjYXJ0b29uaGFuZ292ZXIsY3J1bmNoeXJvbGwsZmFuZG9yLGhpZGl2ZSxtb25kbyxuaWNrc3BsYXQscm9vc3RlcnRlZXRoLHRlc3RlZCx2cnZzZWxlY3RcLzYxODIwOTlcLyoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE1Nzg4MzkxMzN9fX1dfQ__&Signature=bIwno1qq8o~dDrnflPHdQ3UWUqw2Tii3kz-11ZWS23i5Y-TMhkuKjhU8MMQfFcYLBiZB3JLVNSyu-gYORDU250vKbpTeDWR4ytyg3FlIecRLAo0qCpaJEvaBb~m-g1xASaEVP69M9CSuYcQL-i4Vkor4vgsSx3UYnafSpvzv9yKhZ-Wa4O~OJzmFX82zkPPN37DADioRZgFu7oLFqJiJdu~27VqvCjFi2UMrzcNz0TtyQiIlhnuN6HVd4J9BtQwSQU6UWrKRuS4chObrJA95tP-OZRUfK750wfMU8gkC4X7JcpAkgj-8dWGHFG0q0x5x8UMeAoFTRBFOZYprTFeTnw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2B2A3800 serial=0x9 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2B2A3800 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2B2A3800 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2B2A3800 trans=28C64C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A3800 stream=25C36EF0 serial=9 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3800 mConnection=263C7800 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3800 sslsocketcontrol=261B8920 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3800 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3800 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 will write from Http2Stream 25C36EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2B2A380C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36EF0 count=319 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36EF0 avail=319 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A3800 key=https://static.ads-twitter.com/[]/[http2.9]/uwt.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A3800 stream=25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A3800 counting stream 25C36EF0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A3800 stream=25C36EF0 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Stream ID 0xF [session=2B2A3800] for URI /uwt.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on background group for trans 28C64C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Generating 180 bytes of HEADERS for stream 0xF with priority weight 21 dep 0x7 frames 1 uri=/uwt.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36EF0 used 319 of 319. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36EF0 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36EF0 inline=193 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3800 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A3800 stream=25C36EF0 result 0 len=193 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3800 sz=193 rv=0 actual=193 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=319 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 stream=25C36EF0 countread=319 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 will write from Http2Stream 25C36EF0 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2B2A380C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 stream=25C36EF0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2B2A3C00 serial=0xA +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2B2A3C00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2B2A3C00 trans=28CCAC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 261B8670 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A3C00 stream=261B8670 serial=10 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3C00 mConnection=263C7AD0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3C00 sslsocketcontrol=261B8A30 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3C00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A3C00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 261B8670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 ReadSegments reader=2B2A3C0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8670 count=402 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 261B8670 avail=402 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A3C00 key=https://bat.bing.com/[]/[http2.10]/bat.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A3C00 stream=261B8670 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A3C00 counting stream 261B8670 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A3C00 stream=261B8670 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 Stream ID 0xF [session=2B2A3C00] for URI /bat.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8670 depends on background group for trans 28CCAC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8670 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 Generating 243 bytes of HEADERS for stream 0xF with priority weight 21 dep 0x7 frames 1 uri=/bat.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 261B8670 used 402 of 402. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 261B8670 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8670 inline=256 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A3C00 stream=261B8670 result 0 len=256 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=256 rv=0 actual=256 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8670 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8670 trans readsegments rv 0 read=402 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=261B8670 countread=402 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 261B8670 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 ReadSegments reader=2B2A3C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8670 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8670 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8670 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=261B8670 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 could not identify a stream to write; suspending. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.digicert.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 63GB52a5dv1xrQpZIV4RiIv7HGx3o3p_UsbUXDFqCgeNMJGi6Cm9jg== +[19256:Socket Thread]: I/nsHttp Age: 187 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 63GB52a5dv1xrQpZIV4RiIv7HGx3o3p_UsbUXDFqCgeNMJGi6Cm9jg== +[19256:Socket Thread]: I/nsHttp Age: 187 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:26 GMT +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp X-Trace-Id: d33afb00-f304-422b-b97a-b7cfdf75b780 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Qu7R0XryxcZG058I9WJBH6Wy7UNhdmnPu1K-cVNJAOQrLiff2QjMIg== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:26 GMT +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp X-Trace-Id: d33afb00-f304-422b-b97a-b7cfdf75b780 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Qu7R0XryxcZG058I9WJBH6Wy7UNhdmnPu1K-cVNJAOQrLiff2QjMIg== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 4 data len 6 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A3800 SETTINGS Control Frame with 1 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3800 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A3800 len=16711681 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A3800 session window 65535 increased by 16711681 now 16777216. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A3800 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 1 data len 309 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A3800 stream 0xF priorityLen=0 stream=25C36EF0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A3800 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36EF0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 23 Jan 2018 19:05:33 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache +[19256:Socket Thread]: I/nsHttp content-type: application/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp etag: "b7b33882a4f3ffd5cbf07434f3137166+gzip" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp via: 1.1 varnish +[19256:Socket Thread]: I/nsHttp age: 82042 +[19256:Socket Thread]: I/nsHttp x-served-by: cache-lga21946-LGA +[19256:Socket Thread]: I/nsHttp x-cache: HIT +[19256:Socket Thread]: I/nsHttp x-timer: S1578838242.906688,VS0,VE0 +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding,Host +[19256:Socket Thread]: I/nsHttp p3p: CP="CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT" +[19256:Socket Thread]: I/nsHttp content-length: 1954 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 23 Jan 2018 19:05:33 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache +[19256:Socket Thread]: I/nsHttp content-type: application/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp etag: "b7b33882a4f3ffd5cbf07434f3137166+gzip" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp via: 1.1 varnish +[19256:Socket Thread]: I/nsHttp age: 82042 +[19256:Socket Thread]: I/nsHttp x-served-by: cache-lga21946-LGA +[19256:Socket Thread]: I/nsHttp x-cache: HIT +[19256:Socket Thread]: I/nsHttp x-timer: S1578838242.906688,VS0,VE0 +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding,Host +[19256:Socket Thread]: I/nsHttp p3p: CP="CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT" +[19256:Socket Thread]: I/nsHttp content-length: 1954 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 0 data len 1954 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3800 Stream ID 0xF Stream Ptr 25C36EF0 Fin=1 Len=1954 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A3800 newbytes=1954 localWindow=12580958 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31766 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3800 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A3800 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3800 by ID 0xF to stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3800 25C36EF0 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A3800 25C36EF0 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3800 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A3C00 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 16, Value 2 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 8388608 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A3C00 len=8323073 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A3C00 session window 65535 increased by 8323073 now 8388608. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A3C00 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 1 data len 212 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A3C00 stream 0xF priorityLen=0 stream=261B8670 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A3C00 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 261B8670 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8670 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: private,max-age=1800 +[19256:Socket Thread]: I/nsHttp content-length: 7148 +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 10 Sep 2019 18:57:28 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp etag: "09c5197968d51:0" +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: 0143145268094AB3B89757E007E29BB3 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:41Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: private,max-age=1800 +[19256:Socket Thread]: I/nsHttp content-length: 7148 +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 10 Sep 2019 18:57:28 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp etag: "09c5197968d51:0" +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: 0143145268094AB3B89757E007E29BB3 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:41Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 193 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0xF Stream Ptr 261B8670 Fin=0 Len=193 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A3C00 id=0xF newbytes=193 unacked=193 localWindow=12582719 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A3C00 newbytes=193 localWindow=12582719 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8670 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8670 count=32575 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 6955 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0xF Stream Ptr 261B8670 Fin=0 Len=6955 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A3C00 id=0xF newbytes=6955 unacked=7148 localWindow=12575764 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A3C00 newbytes=6955 localWindow=12575764 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8670 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0xF Stream Ptr 261B8670 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A3C00 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 by ID 0xF to stream 261B8670 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 261B8670 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A3C00 261B8670 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 261B8670 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: omDDtKINzqWkF1zIzOYloL3DVUk3z88OfTkSUHpCmFOaqrwkCsFU4Q== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: omDDtKINzqWkF1zIzOYloL3DVUk3z88OfTkSUHpCmFOaqrwkCsFU4Q== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/index?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2B29FC00 serial=0xB +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2B29FC00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2B29FC00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2B29FC00 trans=2B29DC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B29FC00 stream=25C36CD0 serial=11 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B29FC00 mConnection=26053CC0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B29FC00 sslsocketcontrol=261B8810 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B29FC00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B29FC00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 25C36CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 ReadSegments reader=2B29FC0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36CD0 count=327 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36CD0 avail=327 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B29FC00 key=https://www.google-analytics.com/[]/[http2.11]/analytics.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B29FC00 stream=25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B29FC00 counting stream 25C36CD0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B29FC00 stream=25C36CD0 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 Stream ID 0xF [session=2B29FC00] for URI /analytics.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36CD0 depends on background group for trans 2B29DC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 Generating 187 bytes of HEADERS for stream 0xF with priority weight 21 dep 0x7 frames 1 uri=/analytics.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36CD0 used 327 of 327. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36CD0 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36CD0 inline=200 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B29FC00 stream=25C36CD0 result 0 len=200 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=200 rv=0 actual=200 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36CD0 trans readsegments rv 0 read=327 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=25C36CD0 countread=327 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 25C36CD0 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36CD0 ReadSegments reader=2B29FC0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36CD0 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=25C36CD0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B29FC00 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 1048576 +[19256:Socket Thread]: I/nsHttp Settings ID 6, Value 16384 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B29FC00 len=983041 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B29FC00 session window 65535 increased by 983041 now 1048576. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2B2A0C00 serial=0xC +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2B2A0C00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2B2A0C00 trans=2B29D800 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A0C00 stream=25C36DE0 serial=12 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A0C00 mConnection=26177400 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A0C00 sslsocketcontrol=25C371B0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A0C00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A0C00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 will write from Http2Stream 25C36DE0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 ReadSegments reader=2B2A0C0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36DE0 count=341 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36DE0 avail=341 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A0C00 key=https://www.googleadservices.com/[]/[http2.12]/pagead/conversion_async.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A0C00 stream=25C36DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A0C00 counting stream 25C36DE0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A0C00 stream=25C36DE0 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 Stream ID 0xF [session=2B2A0C00] for URI /pagead/conversion_async.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36DE0 depends on background group for trans 2B29D800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36DE0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 Generating 195 bytes of HEADERS for stream 0xF with priority weight 21 dep 0x7 frames 1 uri=/pagead/conversion_async.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36DE0 used 341 of 341. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36DE0 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36DE0 inline=208 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A0C00 stream=25C36DE0 result 0 len=208 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=208 rv=0 actual=208 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36DE0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36DE0 trans readsegments rv 0 read=341 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 stream=25C36DE0 countread=341 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 will write from Http2Stream 25C36DE0 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36DE0 ReadSegments reader=2B2A0C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36DE0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36DE0 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36DE0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 stream=25C36DE0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A0C00 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 1048576 +[19256:Socket Thread]: I/nsHttp Settings ID 6, Value 16384 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A0C00 len=983041 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A0C00 session window 65535 increased by 983041 now 1048576. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=103532 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a0888-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 18:56:14 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 17:40:24 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=103532 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a0888-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 18:56:14 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 17:40:24 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2B2A4C00 serial=0xD +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2B2A4C00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2B2A4C00 trans=28C67400 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A4C00 stream=25C36EF0 serial=13 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A4C00 mConnection=263D33E0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A4C00 sslsocketcontrol=25C370A0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A4C00 version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2B2A4C00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 25C36EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2B2A4C0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36EF0 count=328 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36EF0 avail=328 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A4C00 key=https://connect.facebook.net/[]/[http2.13]/en_US/fbevents.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A4C00 stream=25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A4C00 counting stream 25C36EF0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A4C00 stream=25C36EF0 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Stream ID 0xF [session=2B2A4C00] for URI /en_US/fbevents.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on background group for trans 28C67400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 Generating 187 bytes of HEADERS for stream 0xF with priority weight 21 dep 0x7 frames 1 uri=/en_US/fbevents.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36EF0 used 328 of 328. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36EF0 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36EF0 inline=200 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A4C00 stream=25C36EF0 result 0 len=200 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=200 rv=0 actual=200 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=328 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=25C36EF0 countread=328 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 25C36EF0 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2B2A4C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=25C36EF0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 9qlt_5do2Yy3zd98fHh-vl4cbL5NUSJWTaxrDw3b0PyP8uTiqASg3g== +[19256:Socket Thread]: I/nsHttp Age: 188 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 9qlt_5do2Yy3zd98fHh-vl4cbL5NUSJWTaxrDw3b0PyP8uTiqASg3g== +[19256:Socket Thread]: I/nsHttp Age: 188 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B29FC00 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 1 data len 347 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B29FC00 stream 0xF priorityLen=0 stream=25C36CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B29FC00 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=10886400; includeSubDomains; preload +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:27:56 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 15:27:56 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 19 Aug 2019 17:22:41 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: Golfe2 +[19256:Socket Thread]: I/nsHttp content-length: 17803 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=7200 +[19256:Socket Thread]: I/nsHttp age: 2566 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=10886400; includeSubDomains; preload +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:27:56 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 15:27:56 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 19 Aug 2019 17:22:41 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: Golfe2 +[19256:Socket Thread]: I/nsHttp content-length: 17803 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=7200 +[19256:Socket Thread]: I/nsHttp age: 2566 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 0 data len 16384 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B29FC00 Stream ID 0xF Stream Ptr 25C36CD0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B29FC00 id=0xF newbytes=16384 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B29FC00 newbytes=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=31448 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=31448 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=30119 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=30119 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=28790 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=28790 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=27461 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=27461 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=26132 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A0C00 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=26132 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=24803 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=24803 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=23474 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=23474 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=22145 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=22145 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=20816 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 1 data len 707 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A0C00 stream 0xF priorityLen=0 stream=25C36DE0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A0C00 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36DE0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp cache-control: private, max-age=3600 +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp etag: 9891173648756672696 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 9881 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp cache-control: private, max-age=3600 +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp etag: 9891173648756672696 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 9881 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 0 data len 9997 flags 8 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0xF mPaddingLength=115 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0xF ready to read HTTP data +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 3 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A0C00 Stream ID 0xF Stream Ptr 25C36DE0 Fin=0 Len=9997 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A0C00 id=0xF newbytes=9997 unacked=9997 localWindow=12572915 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A0C00 newbytes=9997 localWindow=12572915 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=31449 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=31449 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=30120 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=30120 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=28791 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=20816 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=19487 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=19487 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=18158 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=28791 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=27462 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=27462 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=26133 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=18158 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=16829 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=16829 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=16384 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 0 data len 1419 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B29FC00 Stream ID 0xF Stream Ptr 25C36CD0 Fin=1 Len=1419 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B29FC00 newbytes=1419 localWindow=12565109 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=16384 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=15509 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=26133 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=24804 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=24804 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=23475 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36CD0 count=15509 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B29FC00 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 by ID 0xF to stream 25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 25C36CD0 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B29FC00 25C36CD0 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B29FC00 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B29FC00 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36DE0 count=23475 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2B2A0C00 stream 0xF len=9997 read=9997 crossed from HTTP data into padding (115 of 115) countWritten=703 +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2B2A0C00 stream 0xF new countWritten=588 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 0 data len 13 flags 9 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0xF mPaddingLength=12 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0xF frame with only padding +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 3 to 5 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A0C00 Stream ID 0xF Stream Ptr 25C36DE0 Fin=1 Len=13 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A0C00 newbytes=13 localWindow=12572902 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 trying to discard 12 bytes of padding +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 5 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A0C00 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A0C00 25C36DE0 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A0C00 25C36DE0 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A0C00 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A0C00 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A0C00 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 4 data len 30 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A4C00 SETTINGS Control Frame with 5 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 1, Value 4096 +[19256:Socket Thread]: I/nsHttp Compression header table setting received: 4096 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16384 +[19256:Socket Thread]: I/nsHttp Settings ID 6, Value 131072 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 len=10420225 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 session window 65535 increased by 10420225 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2B2A4C00 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 8 data len 4 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 len=10420224 Stream 0xF. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 stream 0xF window 65536 increased by 10420224 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 1 data len 721 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A4C00 stream 0xF priorityLen=0 stream=25C36EF0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A4C00 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36EF0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: cQpm5NJrDpglCKdOGQfN3LZ0Gln2aTvvtFxS/t454oxOwq+lxULEyHYH3qIuUBrjYIEKTejYhmdrBN+4TYJskw== +[19256:Socket Thread]: I/nsHttp content-length: 30426 +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: cQpm5NJrDpglCKdOGQfN3LZ0Gln2aTvvtFxS/t454oxOwq+lxULEyHYH3qIuUBrjYIEKTejYhmdrBN+4TYJskw== +[19256:Socket Thread]: I/nsHttp content-length: 30426 +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 BUFFERING FRAME HEADER incomplete size=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0xF Stream Ptr 25C36EF0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0xF newbytes=16384 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=31276 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16384 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 14042 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0xF Stream Ptr 25C36EF0 Fin=1 Len=14042 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=14042 localWindow=12552486 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=16384 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=14893 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=3742 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=3742 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=3742 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A4C00 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 by ID 0xF to stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 25C36EF0 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A4C00 25C36EF0 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36EF0 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /v1/p HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: vrv-eec.etp-prod.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Content-Type: text/plain +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Content-Length: 1262 +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/seasons?series_id=G6QW774G6&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/series/G6QW774G6?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /i/adsct?txn_id=nvpat&p_id=Twitter&tw_sale_amount=0&tw_order_quantity=0 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: analytics.twitter.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: personalization_id="v1_YEmmlOqdUsv6jAYrsrVt2Q=="; tfw_exp=0 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /action/0?ti=5476222&Ver=2&mid=d133e58f-b07e-d618-b2cc-826df75d989f&pi=0&lg=en-US&sw=2560&sh=1440&sc=24&tl=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&kw=Japanese%20Animation,%20Role%20Playing%20Games,%20Channel%20Frederator,%20Cartoon%20Hangover,%20Bravest%20Warriors,%20Naruto%20Shippuden,%20Adult%20Animation,%20Science%20Fiction,%20Hunter%20x%20Hunter,%20Japanese%20Anime,%20Bee%20%26%20Puppycat,%20Graphic%20Novel,%20Rooster%20Teeth,%20Board%20Games,%20Video%20Games,%20Crunchyroll,%20Titansgrave,%20Crunch%20Time,%20Otter%20Media,%20Comic%20Book,%20Super%20Hero,%20Frederator,%20Lazer%20Team,%20Animation,%20One%20Piece,%20Tabletop,%20Ellation,%20Fantasy,%20Chernin,%20Manhua,%20Sci-Fi,%20Gaming,%20Comics,%20Naruto,%20Fandom,%20Stream,%20Online,%20Anime,%20Manga,%20Gamer,%20Otaku,%20Watch,%20Video,%20RWBY,%20Xbox,%20Fans,%20Nerd,%20Geek,%20VRV&p=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&r=<=829&evt=pageLoad&msclkid=N&rn=706485 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: bat.bing.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: MUID=28AB4EBA3736605C0C3F4091333663A0; MR=0; MUIDB=28AB4EBA3736605C0C3F4091333663A0 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A3C00 stream=25C36EF0 serial=10 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 25C36EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2B2A3C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25C36EF0 count=1377 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25C36EF0 avail=1377 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2b2a3c00 key=https://bat.bing.com/[]/[http2.10]/action/0?ti=5476222&Ver=2&mid=d133e58f-b07e-d618-b2cc-826df75d989f&pi=0&lg=en-US&sw=2560&sh=1440&sc=24&tl=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&kw=Japanese%20Animation,%20Role%20Playing%20Games,%20Channel%20Frederator,%20Cartoon%20Hangover,%20Bravest%20Warriors,%20Naruto%20Shippuden,%20Adult%20Animation,%20Science%20Fiction,%20Hunter%20x%20Hunter,%20Japanese%20Anime,%20Bee%20%26%20Puppycat,%20Graphic%20Novel,%20Rooster%20Teeth,%20Board%20Games,%20Video%20Games,%20Crunchyroll,%20Titansgrave,%20Crunch%20Time,%20Otter%20Media,%20Comic%20Book,%20Super%20Hero,%20Frederator,%20Lazer%20Team,%20Animation,%20One%20Piece,%20Tabletop,%20Ellation,%20Fantasy,%20Chernin,%20Manhua,%20Sci-Fi,%20Gaming,%20Comics,%20Naruto,%20Fandom,%20Stream,%20Online,%20Anime,%20Manga,%20Gamer,%20Otaku,%20Watch,%20Video,%20RWBY,%20Xbox,%20Fans,%20Nerd,%20Geek,%20VRV&p=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&r=<=829&evt=pageLoad&msclkid=N&rn=706485 requestcontext=240474c0 cache=0 hit=0 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A3C00 stream=25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A3C00 counting stream 25C36EF0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A3C00 stream=25C36EF0 id=0x11 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25c36ef0 Stream ID 0x11 [session=2b2a3c00] for URI /action/0?ti=5476222&Ver=2&mid=d133e58f-b07e-d618-b2cc-826df75d989f&pi=0&lg=en-US&sw=2560&sh=1440&sc=24&tl=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&kw=Japanese%20Animation,%20Role%20Playing%20Games,%20Channel%20Frederator,%20Cartoon%20Hangover,%20Bravest%20Warriors,%20Naruto%20Shippuden,%20Adult%20Animation,%20Science%20Fiction,%20Hunter%20x%20Hunter,%20Japanese%20Anime,%20Bee%20%26%20Puppycat,%20Graphic%20Novel,%20Rooster%20Teeth,%20Board%20Games,%20Video%20Games,%20Crunchyroll,%20Titansgrave,%20Crunch%20Time,%20Otter%20Media,%20Comic%20Book,%20Super%20Hero,%20Frederator,%20Lazer%20Team,%20Animation,%20One%20Piece,%20Tabletop,%20Ellation,%20Fantasy,%20Chernin,%20Manhua,%20Sci-Fi,%20Gaming,%20Comics,%20Naruto,%20Fandom,%20Stream,%20Online,%20Anime,%20Manga,%20Gamer,%20Otaku,%20Watch,%20Video,%20RWBY,%20Xbox,%20Fans,%20Nerd,%20Geek,%20VRV&p=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&r=<=829&evt=pageLoad&msclkid=N&rn=706485 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on background group for trans 2BCE9400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25C36EF0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25c36ef0 Generating 750 bytes of HEADERS for stream 0x11 with priority weight 11 dep 0x7 frames 1 uri=/action/0?ti=5476222&Ver=2&mid=d133e58f-b07e-d618-b2cc-826df75d989f&pi=0&lg=en-US&sw=2560&sh=1440&sc=24&tl=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&kw=Japanese%20Animation,%20Role%20Playing%20Games,%20Channel%20Frederator,%20Cartoon%20Hangover,%20Bravest%20Warriors,%20Naruto%20Shippuden,%20Adult%20Animation,%20Science%20Fiction,%20Hunter%20x%20Hunter,%20Japanese%20Anime,%20Bee%20%26%20Puppycat,%20Graphic%20Novel,%20Rooster%20Teeth,%20Board%20Games,%20Video%20Games,%20Crunchyroll,%20Titansgrave,%20Crunch%20Time,%20Otter%20Media,%20Comic%20Book,%20Super%20Hero,%20Frederator,%20Lazer%20Team,%20Animation,%20One%20Piece,%20Tabletop,%20Ellation,%20Fantasy,%20Chernin,%20Manhua,%20Sci-Fi,%20Gaming,%20Comics,%20Naruto,%20Fandom,%20Stream,%20Online,%20Anime,%20Manga,%20Gamer,%20Otaku,%20Watch,%20Video,%20RWBY,%20Xbox,%20Fans,%20Nerd,%20Geek,%20VRV&p=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&r=<=829&evt=pageLoad&msclkid=N&rn=706485 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25C36EF0 used 1377 of 1377. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25C36EF0 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25C36EF0 inline=763 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A3C00 stream=25C36EF0 result 0 len=763 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=763 rv=0 actual=763 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=1377 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=25C36EF0 countread=1377 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 25C36EF0 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25C36EF0 ReadSegments reader=2B2A3C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25C36EF0 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25C36EF0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=25C36EF0 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/client/config HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/account HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /plugins/ua/linkid.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.google-analytics.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 261B8670 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B29FC00 stream=261B8670 serial=11 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 261B8670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 ReadSegments reader=2B29FC0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8670 count=335 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 261B8670 avail=335 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B29FC00 key=https://www.google-analytics.com/[]/[http2.11]/plugins/ua/linkid.js requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B29FC00 stream=261B8670 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B29FC00 counting stream 261B8670 Currently 1 streams in session, high water mark is 1 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B29FC00 stream=261B8670 id=0x11 concurrent=1 +[19256:Main Thread]: I/nsHttp GET /signals/config/455459264638154?v=2.9.15&r=stable HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 Stream ID 0x11 [session=2B29FC00] for URI /plugins/ua/linkid.js +[19256:Main Thread]: I/nsHttp Host: connect.facebook.net +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8670 depends on background group for trans 2BCE9C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8670 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 Generating 40 bytes of HEADERS for stream 0x11 with priority weight 21 dep 0x7 frames 1 uri=/plugins/ua/linkid.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 261B8670 used 335 of 335. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 261B8670 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8670 inline=53 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B29FC00 stream=261B8670 result 0 len=53 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=53 rv=0 actual=53 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8670 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8670 trans readsegments rv 0 read=335 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=261B8670 countread=335 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 261B8670 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8670 ReadSegments reader=2B29FC0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8670 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8670 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8670 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=261B8670 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 261B8AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A4C00 stream=261B8AB0 serial=13 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 261B8AB0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8AB0 ReadSegments reader=2B2A4C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8AB0 count=359 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 261B8AB0 avail=359 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A4C00 key=https://connect.facebook.net/[]/[http2.13]/signals/config/455459264638154?v=2.9.15&r=stable requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A4C00 stream=261B8AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A4C00 counting stream 261B8AB0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A4C00 stream=261B8AB0 id=0x11 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8AB0 Stream ID 0x11 [session=2B2A4C00] for URI /signals/config/455459264638154?v=2.9.15&r=stable +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8AB0 depends on background group for trans 2BCEA000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8AB0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8AB0 Generating 63 bytes of HEADERS for stream 0x11 with priority weight 21 dep 0x7 frames 1 uri=/signals/config/455459264638154?v=2.9.15&r=stable +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 261B8AB0 used 359 of 359. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 261B8AB0 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8AB0 inline=76 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A4C00 stream=261B8AB0 result 0 len=76 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=76 rv=0 actual=76 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8AB0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8AB0 trans readsegments rv 0 read=359 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=261B8AB0 countread=359 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 261B8AB0 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8AB0 ReadSegments reader=2B2A4C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8AB0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8AB0 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8AB0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=261B8AB0 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: t.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /pagead/conversion/881227315/?random=1578838241674&cv=9&fst=1578838241674&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.googleadservices.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /pagead/viewthroughconversion/881227315/?random=1578838241676&cv=9&fst=1578838241676&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: googleads.g.doubleclick.net +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: IDE=AHWqTUm_ra5EE5S5tgnkq7w_dhAmjjNaFGNj94I73BfPNjnq1IwSuSqd1g79S9_I +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 261B8EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A0C00 stream=261B8EF0 serial=12 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 will write from Http2Stream 261B8EF0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8EF0 ReadSegments reader=2B2A0C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8EF0 count=724 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 261B8EF0 avail=724 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A0C00 key=https://www.googleadservices.com/[]/[http2.12]/pagead/conversion/881227315/?random=1578838241674&cv=9&fst=1578838241674&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A0C00 stream=261B8EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A0C00 counting stream 261B8EF0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A0C00 stream=261B8EF0 id=0x11 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8EF0 Stream ID 0x11 [session=2B2A0C00] for URI /pagead/conversion/881227315/?random=1578838241674&cv=9&fst=1578838241674&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8EF0 depends on background group for trans 2BCEB800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8EF0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8EF0 Generating 331 bytes of HEADERS for stream 0x11 with priority weight 21 dep 0x7 frames 1 uri=/pagead/conversion/881227315/?random=1578838241674&cv=9&fst=1578838241674&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 261B8EF0 used 724 of 724. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 261B8EF0 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8EF0 inline=344 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A0C00 stream=261B8EF0 result 0 len=344 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=344 rv=0 actual=344 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8EF0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8EF0 trans readsegments rv 0 read=724 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 stream=261B8EF0 countread=724 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 will write from Http2Stream 261B8EF0 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8EF0 ReadSegments reader=2B2A0C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8EF0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8EF0 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8EF0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 stream=261B8EF0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: DxVySJAFCRIXNJmYtD5M5hSMrY3jgzMSNWmHHWJvIcguH2ma-1M_Hw== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: DxVySJAFCRIXNJmYtD5M5hSMrY3jgzMSNWmHHWJvIcguH2ma-1M_Hw== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: chfbCE8ohzQoxy_pyD3I-PMpdyGVvmJaEZ5sd8qlmQpQ0GMEn0w7uA== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: chfbCE8ohzQoxy_pyD3I-PMpdyGVvmJaEZ5sd8qlmQpQ0GMEn0w7uA== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 8 data len 4 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 len=10420224 Stream 0x11. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 stream 0x11 window 65536 increased by 10420224 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 1 data len 136 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B29FC00 stream 0x11 priorityLen=0 stream=261B8670 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B29FC00 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 261B8670 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8670 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp content-length: 859 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:18:15 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:18:15 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 22 Oct 2019 18:15:00 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: sffe +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp age: 3147 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=3600 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp content-length: 859 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:18:15 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:18:15 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 22 Oct 2019 18:15:00 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: sffe +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp age: 3147 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=3600 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 0 data len 859 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B29FC00 Stream ID 0x11 Stream Ptr 261B8670 Fin=1 Len=859 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B29FC00 newbytes=859 localWindow=12564250 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8670 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B29FC00 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 by ID 0x11 to stream 261B8670 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 261B8670 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B29FC00 261B8670 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 261B8670 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 1 data len 130 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A3C00 stream 0x11 priorityLen=0 stream=25C36EF0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A3C00 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25C36EF0 response code 204 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25C36EF0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 204 No Content +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: 5D89D96D4C9D435DBFDDE247ED22F0B9 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:42Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: 5D89D96D4C9D435DBFDDE247ED22F0B9 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:42Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:41 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 0 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0x11 Stream Ptr 25C36EF0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25C36EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A3C00 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 by ID 0x11 to stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 25C36EF0 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A3C00 25C36EF0 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25C36EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25405C50 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B29FC00 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B29FC00 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 1 data len 101 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A0C00 stream 0x11 priorityLen=0 stream=261B8EF0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A0C00 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 261B8EF0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8EF0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 1074 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 1074 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 0 data len 1232 flags 8 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x11 mPaddingLength=157 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x11 ready to read HTTP data +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 3 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A0C00 Stream ID 0x11 Stream Ptr 261B8EF0 Fin=0 Len=1232 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A0C00 id=0x11 newbytes=1232 unacked=1232 localWindow=12581680 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A0C00 newbytes=1232 localWindow=12571670 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8EF0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8EF0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2B2A0C00 stream 0x11 len=1232 read=1232 crossed from HTTP data into padding (157 of 157) countWritten=1231 +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2B2A0C00 stream 0x11 new countWritten=1074 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=261B8E70 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 0 data len 48 flags 9 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x11 mPaddingLength=47 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x11 frame with only padding +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 3 to 5 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A0C00 Stream ID 0x11 Stream Ptr 261B8EF0 Fin=1 Len=48 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A0C00 newbytes=48 localWindow=12571622 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 trying to discard 47 bytes of padding +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 5 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A0C00 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A0C00 261B8EF0 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A0C00 261B8EF0 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A0C00 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 261B8EF0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A0C00 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A0C00 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: XAc6CF7SbiuXiPoXHTArtez2ToQH3oYXadnQosJ-SKkh2I6RwbFX_Q== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: XAc6CF7SbiuXiPoXHTArtez2ToQH3oYXadnQosJ-SKkh2I6RwbFX_Q== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 2DXUKKHyJCOflcfO5FjUb2MpwQyTapdmOc-T2HYvBIfM4A28J5eZ8g== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 2DXUKKHyJCOflcfO5FjUb2MpwQyTapdmOc-T2HYvBIfM4A28J5eZ8g== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 1 data len 98 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A4C00 stream 0x11 priorityLen=0 stream=261B8AB0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A4C00 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 261B8AB0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: +oKZ/IkKkdsoofdjHYLfa843TGP/i04P3+RF89ifoHUI9L+aZSipSAqS6hhoomqmSW/5KUxnAV5Zi3Uw6zOWiA== +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: +oKZ/IkKkdsoofdjHYLfa843TGP/i04P3+RF89ifoHUI9L+aZSipSAqS6hhoomqmSW/5KUxnAV5Zi3Uw6zOWiA== +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 BUFFERING FRAME HEADER incomplete size=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x11 newbytes=16384 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12536102 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=31276 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=29776 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=29776 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/account HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/client/config HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp authorization: OAuth ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/episodes?season_id=G65PMMV06&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /pagead/viewthroughconversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&ocp_id=4igbXpi_IPXJogbyloboCQ&sscte=1&crd=>d= HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: googleads.g.doubleclick.net +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: IDE=AHWqTUm_ra5EE5S5tgnkq7w_dhAmjjNaFGNj94I73BfPNjnq1IwSuSqd1g79S9_I +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/up_next?account_id=&mode=episode&episode_id=GYW4NNEE6&version=v2 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/seasons/G65PMMV06/extra_videos?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=19376 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x11 newbytes=16384 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12519718 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=31277 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=31268 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=28CA5920 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=19375 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x11 newbytes=16384 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12503334 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=31277 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=31268 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /gts1o1 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.pki.goog +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 13393 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 2982 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=0 Len=2982 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x11 newbytes=2982 unacked=38741 localWindow=12530778 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=2982 localWindow=12500352 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1491 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.digicert.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25C36F80 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1491 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x11 newbytes=16384 unacked=52143 localWindow=12514394 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12483968 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1491 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=261B8C50 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: n0Ip36oFBHwcFsHPb43YuchkEAWPdYDnJ8Bi6GPstsi-C25ueCkA7A== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: n0Ip36oFBHwcFsHPb43YuchkEAWPdYDnJ8Bi6GPstsi-C25ueCkA7A== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 11911 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1500 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=261B8D60 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1482 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x11 newbytes=16384 unacked=52143 localWindow=12498010 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12467584 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 13393 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1500 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1482 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x11 newbytes=16384 unacked=52143 localWindow=12481626 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12451200 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 13393 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1500 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1482 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 13631 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x11 Stream Ptr 261B8AB0 Fin=1 Len=13631 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=13631 localWindow=12437569 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 12222 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 0 1400 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 2B2A4C00 - recorded downstream fin of stream 261B8AB0 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A4C00 id 0x11 needscleanup=261B8AB0. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 by ID 0x11 to stream 261B8AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 261B8AB0 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x11 deferred +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=129369 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a6643-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Tue, 14 Jan 2020 02:06:51 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sun, 12 Jan 2020 00:20:19 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=129369 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a6643-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Tue, 14 Jan 2020 02:06:51 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sun, 12 Jan 2020 00:20:19 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: mmQl5BM9LEuB_gt9g13NAF8NPr1VlcmkjPdEjWA09Rk9qvGKZbXfqA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: mmQl5BM9LEuB_gt9g13NAF8NPr1VlcmkjPdEjWA09Rk9qvGKZbXfqA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2BCF1000 serial=0xE +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2BCF1000 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2BCF1000 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2BCF1000 trans=2BCEB000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2BCF1000 stream=2DFE4340 serial=14 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCF1000 mConnection=2607D9F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCF1000 sslsocketcontrol=261B8E70 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCF1000 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCF1000 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 will write from Http2Stream 2DFE4340 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 ReadSegments reader=2BCF100C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4340 count=437 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4340 avail=437 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2BCF1000 key=https://t.co/[]/[http2.14]/i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0 requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2BCF1000 stream=2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2BCF1000 counting stream 2DFE4340 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2BCF1000 stream=2DFE4340 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 Stream ID 0xF [session=2BCF1000] for URI /i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4340 depends on background group for trans 2BCEB000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4340 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 Generating 267 bytes of HEADERS for stream 0xF with priority weight 11 dep 0x7 frames 1 uri=/i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4340 used 437 of 437. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4340 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4340 inline=280 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCF1000 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2BCF1000 stream=2DFE4340 result 0 len=280 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCF1000 sz=280 rv=0 actual=280 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4340 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 trans readsegments rv 0 read=437 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCF1000 stream=2DFE4340 countread=437 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 will write from Http2Stream 2DFE4340 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 ReadSegments reader=2BCF100C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4340 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCF1000 stream=2DFE4340 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2E140800 serial=0xF +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2E140800 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2E140800 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2E140800 trans=2BCEC400 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4230 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E140800 stream=2DFE4230 serial=15 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E140800 mConnection=2607D840 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E140800 sslsocketcontrol=25405C50 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E140800 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E140800 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 will write from Http2Stream 2DFE4230 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 ReadSegments reader=2E14080C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4230 count=1293 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4230 avail=1293 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2e140800 key=https://googleads.g.doubleclick.net/[]/[http2.15]/pagead/viewthroughconversion/881227315/?random=1578838241676&cv=9&fst=1578838241676&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 requestcontext=240474c0 cache=0 hit=0 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E140800 stream=2DFE4230 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E140800 counting stream 2DFE4230 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E140800 stream=2DFE4230 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 Stream ID 0xF [session=2E140800] for URI /pagead/viewthroughconversion/881227315/?random=1578838241676&cv=9&fst=1578838241676&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4230 depends on background group for trans 2BCEC400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4230 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 Generating 902 bytes of HEADERS for stream 0xF with priority weight 21 dep 0x7 frames 1 uri=/pagead/viewthroughconversion/881227315/?random=1578838241676&cv=9&fst=1578838241676&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&rfmt=3&fmt=4 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4230 used 1293 of 1293. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4230 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4230 inline=915 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E140800 stream=2DFE4230 result 0 len=915 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=915 rv=0 actual=915 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4230 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4230 trans readsegments rv 0 read=1293 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 stream=2DFE4230 countread=1293 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 will write from Http2Stream 2DFE4230 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 ReadSegments reader=2E14080C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4230 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4230 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4230 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 stream=2DFE4230 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E140800 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 1048576 +[19256:Socket Thread]: I/nsHttp Settings ID 6, Value 16384 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E140800 len=983041 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E140800 session window 65535 increased by 983041 now 1048576. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCF1000::14] Frame Header Read type 4 data len 6 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2BCF1000 SETTINGS Control Frame with 1 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCF1000 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 buffering frame header read failure 80470007 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/up_next?account_id=&mode=episode&episode_id=GYW4NNEE6&version=v2 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp authorization: OAuth ************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************ +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4450 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4450 serial=1 NextID=0x47 (tentative) +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/1d7791257e03ebf1585e4097dd538b7e.jpg HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4450 0x0 block-input=0 block-output=0 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4450 ReadSegments reader=2549980C count=2048 state=0 +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4450 count=604 state=0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4450 avail=604 state=0 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4450 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4450 Currently 1 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4450 id=0x47 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4450 Stream ID 0x47 [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4450 depends on background group for trans 2BCF0000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4450 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4450 Generating 106 bytes of HEADERS for stream 0x47 with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4450 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4450 0x47 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4450 inline=119 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4450 result 0 len=119 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/0f879fb7dc75dd0fc6f93b1eff310f6c.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=119 rv=0 actual=119 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4450 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4450 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4450 countread=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4450 0x47 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4450 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4450 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4450 0x47: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4450 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4450 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/c89bf3ef4f58b48cb0ccf432dbf6c2cf.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4560 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4560 serial=1 NextID=0x49 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4560 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4560 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4560 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4560 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/1d7791257e03ebf1585e4097dd538b7e.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4560 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4560 Currently 2 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4560 id=0x49 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4560 Stream ID 0x49 [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/1d7791257e03ebf1585e4097dd538b7e.jpg +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4560 depends on background group for trans 2E143C00 +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/e1f398dbabde2468d12fa06dde7436de.jpg HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4560 depends on stream 0x7 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4560 Generating 106 bytes of HEADERS for stream 0x49 with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/1d7791257e03ebf1585e4097dd538b7e.jpg +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4560 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4560 0x49 12451840 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4560 inline=119 stream=0 +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4560 result 0 len=119 +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=119 rv=0 actual=119 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4560 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4560 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4560 countread=604 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4670 +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/60ae70311bddbe1d978176e2c4c7f4d7.jpg HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4670 serial=1 NextID=0x4B (tentative) +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4560 0x49 block-input=0 block-output=0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4560 ReadSegments reader=2549980C count=2048 state=1 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4560 trans readsegments rv 0 read=0 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4560 0x49: Sending request data complete, mUpstreamState=1 +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4560 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4560 stream send complete +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4670 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4670 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4670 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/0f879fb7dc75dd0fc6f93b1eff310f6c.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4670 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4670 Currently 3 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4670 id=0x4B concurrent=3 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4670 Stream ID 0x4B [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/0f879fb7dc75dd0fc6f93b1eff310f6c.jpg +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/b895a266bef87c65c2ccde5e138b46b9.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4670 depends on background group for trans 2BCE7C00 +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4670 depends on stream 0x7 +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4670 Generating 106 bytes of HEADERS for stream 0x4B with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/0f879fb7dc75dd0fc6f93b1eff310f6c.jpg +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4670 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4670 0x4B 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4670 inline=119 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4670 result 0 len=119 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=119 rv=0 actual=119 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4670 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4670 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4670 countread=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4670 0x4B block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4670 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4670 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4670 0x4B: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4670 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4670 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/918a263d73ada0892916a2e51eabf911.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4780 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4780 serial=1 NextID=0x4D (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4780 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4780 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4780 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4780 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/c89bf3ef4f58b48cb0ccf432dbf6c2cf.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4780 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4780 Currently 4 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4780 id=0x4D concurrent=4 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4780 Stream ID 0x4D [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/c89bf3ef4f58b48cb0ccf432dbf6c2cf.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4780 depends on background group for trans 2E144800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4780 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4780 Generating 106 bytes of HEADERS for stream 0x4D with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/c89bf3ef4f58b48cb0ccf432dbf6c2cf.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4780 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4780 0x4D 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4780 inline=119 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4780 result 0 len=119 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=119 rv=0 actual=119 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4780 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4780 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4780 countread=604 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE49A0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE49A0 serial=1 NextID=0x4F (tentative) +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/640x360/catalog/mondo/627599d3bc37d0ddc5c0842ac317453e.jpg HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4780 0x4D block-input=0 block-output=0 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4780 ReadSegments reader=2549980C count=2048 state=1 +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4780 trans readsegments rv 0 read=0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4780 0x4D: Sending request data complete, mUpstreamState=1 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4780 from 1 to 4 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4780 stream send complete +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4AB0 serial=1 NextID=0x4F (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE49A0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE49A0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE49A0 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE49A0 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/e1f398dbabde2468d12fa06dde7436de.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE49A0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE49A0 Currently 5 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE49A0 id=0x4F concurrent=5 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE49A0 Stream ID 0x4F [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/e1f398dbabde2468d12fa06dde7436de.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE49A0 depends on background group for trans 2E145400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE49A0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE49A0 Generating 105 bytes of HEADERS for stream 0x4F with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/e1f398dbabde2468d12fa06dde7436de.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE49A0 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE49A0 0x4F 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE49A0 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE49A0 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE49A0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE49A0 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE49A0 countread=604 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4BC0 serial=1 NextID=0x51 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4AB0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4AB0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4AB0 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4AB0 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/60ae70311bddbe1d978176e2c4c7f4d7.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4AB0 Currently 6 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4AB0 id=0x51 concurrent=6 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4AB0 Stream ID 0x51 [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/60ae70311bddbe1d978176e2c4c7f4d7.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4AB0 depends on background group for trans 2E145000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4AB0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4AB0 Generating 105 bytes of HEADERS for stream 0x51 with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/60ae70311bddbe1d978176e2c4c7f4d7.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4AB0 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4AB0 0x51 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4AB0 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4AB0 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4AB0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4AB0 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4AB0 countread=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE49A0 0x4F block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE49A0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE49A0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE49A0 0x4F: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE49A0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE49A0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4CD0 serial=1 NextID=0x53 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4BC0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4BC0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4BC0 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4BC0 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/b895a266bef87c65c2ccde5e138b46b9.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4BC0 Currently 7 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4BC0 id=0x53 concurrent=7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4BC0 Stream ID 0x53 [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/b895a266bef87c65c2ccde5e138b46b9.jpg +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.digicert.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4BC0 depends on background group for trans 2E146400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4BC0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4BC0 Generating 105 bytes of HEADERS for stream 0x53 with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/b895a266bef87c65c2ccde5e138b46b9.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4BC0 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4BC0 0x53 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4BC0 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4BC0 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4BC0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4BC0 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4BC0 countread=604 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4890 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4890 serial=1 NextID=0x55 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4AB0 0x51 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4AB0 ReadSegments reader=2549980C count=2048 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4AB0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4AB0 0x51: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4AB0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4AB0 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /talkbox/guestbooks?guestbook_keys=GYW4NNEE6,GRW4NNE8Y,GY1X119GY,GR79335K6,G6XJKK0ER,GYQW7742Y,GYJ0PG186,GY4PK5MJ6,GRZJE7XG6,G63K077M6,G6MEJDD8R,GRW4W0E2Y HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4CD0 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4CD0 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/918a263d73ada0892916a2e51eabf911.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4CD0 Currently 8 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4CD0 id=0x55 concurrent=8 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 Stream ID 0x55 [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/918a263d73ada0892916a2e51eabf911.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4CD0 depends on background group for trans 2E146000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 Generating 105 bytes of HEADERS for stream 0x55 with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/918a263d73ada0892916a2e51eabf911.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4CD0 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4CD0 0x55 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4CD0 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4CD0 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4CD0 countread=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4BC0 0x53 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4BC0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4BC0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4BC0 0x53: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4BC0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4BC0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4890 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4890 ReadSegments reader=2549980C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4890 count=604 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4890 avail=604 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/640x360/catalog/mondo/627599d3bc37d0ddc5c0842ac317453e.jpg requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4890 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4890 Currently 9 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4890 id=0x57 concurrent=9 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4890 Stream ID 0x57 [session=25499800] for URI /imgsrv/display/thumbnail/640x360/catalog/mondo/627599d3bc37d0ddc5c0842ac317453e.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4890 depends on background group for trans 2E147000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4890 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4890 Generating 105 bytes of HEADERS for stream 0x57 with priority weight 12 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/640x360/catalog/mondo/627599d3bc37d0ddc5c0842ac317453e.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4890 used 604 of 604. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4890 0x57 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4890 inline=118 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4890 result 0 len=118 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=118 rv=0 actual=118 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4890 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4890 trans readsegments rv 0 read=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4890 countread=604 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4CD0 0x55 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 0x55: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4CD0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4890 0x57 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4890 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4890 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4890 0x57: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4890 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4890 stream send complete +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 162 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: uaa0ALs6g90e-2XhrSO9tzh2JcRLlOrVvMvcCf_JBjrtPUUdFvWMnA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 162 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: uaa0ALs6g90e-2XhrSO9tzh2JcRLlOrVvMvcCf_JBjrtPUUdFvWMnA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 608 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: DtGB6zY3llJGd73EYWDerzwZs4M8UPCxsXPpPV0fCFa4sBNhYeKMTw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 608 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: DtGB6zY3llJGd73EYWDerzwZs4M8UPCxsXPpPV0fCFa4sBNhYeKMTw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2BCED800 serial=0x10 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2BCED800 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2BCED800 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2BCED800 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2BCED800 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2BCED800 trans=2BCEE400 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream 2BCED800 atrans=2BCEE400 trans=2BCEE400 session unusable - resched. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED800 mConnection=2607D620 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED800 sslsocketcontrol=261B8D60 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED800 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED800 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCED800 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCED800 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 ResumeRecv After early flush in ReadSegments +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E140800 stream=2DFE4DE0 serial=15 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 will write from Http2Stream 2DFE4DE0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 ReadSegments reader=2E14080C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4DE0 count=876 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4DE0 avail=876 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2E140800 key=https://googleads.g.doubleclick.net/[]/[http2.15]/pagead/viewthroughconversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&ocp_id=4igbXpi_IPXJogbyloboCQ&sscte=1&crd=>d= requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E140800 stream=2DFE4DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E140800 counting stream 2DFE4DE0 Currently 2 streams in session, high water mark is 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E140800 stream=2DFE4DE0 id=0x11 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 Stream ID 0x11 [session=2E140800] for URI /pagead/viewthroughconversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&ocp_id=4igbXpi_IPXJogbyloboCQ&sscte=1&crd=>d= +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4DE0 depends on background group for trans 2BCEE400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4DE0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 Generating 385 bytes of HEADERS for stream 0x11 with priority weight 11 dep 0x7 frames 1 uri=/pagead/viewthroughconversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&ocp_id=4igbXpi_IPXJogbyloboCQ&sscte=1&crd=>d= +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4DE0 used 876 of 876. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4DE0 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4DE0 inline=398 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E140800 stream=2DFE4DE0 result 0 len=398 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=398 rv=0 actual=398 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4DE0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4DE0 trans readsegments rv 0 read=876 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 stream=2DFE4DE0 countread=876 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 will write from Http2Stream 2DFE4DE0 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 ReadSegments reader=2E14080C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4DE0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4DE0 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4DE0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E140800 stream=2DFE4DE0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCED800 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/preferences HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.sca1b.amazontrust.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E140800 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCF1000::14] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2BCF1000 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCF1000::14] Frame Header Read type 1 data len 364 flags 24 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2BCF1000 stream 0xF priorityLen=5 stream=2DFE4340 end_stream=0 end_headers=4 priority_group=32 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2BCF1000 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4340 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-length: 65 +[19256:Socket Thread]: I/nsHttp content-type: image/gif;charset=utf-8 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp expires: Tue, 31 Mar 1981 05:00:00 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp server: tsa_b +[19256:Socket Thread]: I/nsHttp status: 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=0 +[19256:Socket Thread]: I/nsHttp x-connection-hash: 84a81e728edcf6cafd45c30247ea516a +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp x-response-time: 7 +[19256:Socket Thread]: I/nsHttp x-transaction: 0085ade30005c6de +[19256:Socket Thread]: I/nsHttp x-twitter-response-tags: BouncerCompliant +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-length: 65 +[19256:Socket Thread]: I/nsHttp content-type: image/gif;charset=utf-8 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp expires: Tue, 31 Mar 1981 05:00:00 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp server: tsa_b +[19256:Socket Thread]: I/nsHttp status: 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=0 +[19256:Socket Thread]: I/nsHttp x-connection-hash: 84a81e728edcf6cafd45c30247ea516a +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp x-response-time: 7 +[19256:Socket Thread]: I/nsHttp x-transaction: 0085ade30005c6de +[19256:Socket Thread]: I/nsHttp x-twitter-response-tags: BouncerCompliant +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCF1000::14] Frame Header Read type 0 data len 65 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2BCF1000 Stream ID 0xF Stream Ptr 2DFE4340 Fin=1 Len=65 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2BCF1000 newbytes=65 localWindow=12582847 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2BCF1000 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2BCF1000 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2BCF1000 by ID 0xF to stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2BCF1000 2DFE4340 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2BCF1000 2DFE4340 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2BCF1000 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=110363 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a1b7f-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 20:50:05 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 19:01:19 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=110363 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a1b7f-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 20:50:05 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 19:01:19 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2E147C00 serial=0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2E147C00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2E147C00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2E147C00 trans=2BCE8800 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E147C00 stream=2DFE4340 serial=17 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147C00 mConnection=2607DD60 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147C00 sslsocketcontrol=28CA5920 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147C00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147C00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 will write from Http2Stream 2DFE4340 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 ReadSegments reader=2E147C0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4340 count=451 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4340 avail=451 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2E147C00 key=https://analytics.twitter.com/[]/[http2.17]/i/adsct?txn_id=nvpat&p_id=Twitter&tw_sale_amount=0&tw_order_quantity=0 requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E147C00 stream=2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E147C00 counting stream 2DFE4340 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E147C00 stream=2DFE4340 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 Stream ID 0xF [session=2E147C00] for URI /i/adsct?txn_id=nvpat&p_id=Twitter&tw_sale_amount=0&tw_order_quantity=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4340 depends on background group for trans 2BCE8800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4340 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 Generating 275 bytes of HEADERS for stream 0xF with priority weight 11 dep 0x7 frames 1 uri=/i/adsct?txn_id=nvpat&p_id=Twitter&tw_sale_amount=0&tw_order_quantity=0 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4340 used 451 of 451. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4340 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4340 inline=288 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147C00 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E147C00 stream=2DFE4340 result 0 len=288 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147C00 sz=288 rv=0 actual=288 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4340 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 trans readsegments rv 0 read=451 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 stream=2DFE4340 countread=451 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 will write from Http2Stream 2DFE4340 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 ReadSegments reader=2E147C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4340 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 stream=2DFE4340 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 4 data len 6 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E147C00 SETTINGS Control Frame with 1 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147C00 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 314 flags 4 id 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x47 priorityLen=0 stream=2DFE4450 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x47 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4450 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4450 count=32768 state=4 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 23790 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:11:41 GMT +[19256:Socket Thread]: I/nsHttp etag: b3d7fc44b7c44c0dd9540060a7900ea6 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 29 Sep 2019 17:53:20 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: PrjgUv95iPLi3lGmW1DM2M_5rmso8bPLb7PxtmLN3EGhxHqR8-x_nw== +[19256:Socket Thread]: I/nsHttp age: 3541 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 23790 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:11:41 GMT +[19256:Socket Thread]: I/nsHttp etag: b3d7fc44b7c44c0dd9540060a7900ea6 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 29 Sep 2019 17:53:20 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: PrjgUv95iPLi3lGmW1DM2M_5rmso8bPLb7PxtmLN3EGhxHqR8-x_nw== +[19256:Socket Thread]: I/nsHttp age: 3541 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x47 Stream Ptr 2DFE4450 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x47 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11313780 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4450 count=32768 state=4 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4450 count=24576 state=4 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x47 Stream Ptr 2DFE4450 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x47 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11305588 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4450 count=24576 state=4 0x47 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4450 count=16749 state=4 0x47 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4450 count=16725 state=4 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 Buffered 0 341 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7406 flags 0 id 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x47 Stream Ptr 2DFE4450 Fin=0 Len=7406 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x47 newbytes=7406 unacked=23449 localWindow=12559122 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7406 localWindow=11298182 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 Buffered 0 7406 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x47 Stream Ptr 2DFE4450 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4450 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x47 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x47 concurrent=9 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x47 needscleanup=2DFE4450. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x47 to stream 2DFE4450 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4450 0x47 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x47 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 1 data len 733 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E140800 stream 0xF priorityLen=0 stream=2DFE4230 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E140800 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4230 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4230 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 1156 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 1156 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 0 data len 1172 flags 8 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 stream 0xF mPaddingLength=15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 stream 0xF ready to read HTTP data +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 3 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E140800 Stream ID 0xF Stream Ptr 2DFE4230 Fin=0 Len=1172 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2E140800 id=0xF newbytes=1172 unacked=1172 localWindow=12581740 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E140800 newbytes=1172 localWindow=12581740 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4230 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2E140800 stream 0xF len=1172 read=1172 crossed from HTTP data into padding (15 of 15) countWritten=1171 +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2E140800 stream 0xF new countWritten=1156 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 0 data len 14 flags 9 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 stream 0xF mPaddingLength=13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 stream 0xF frame with only padding +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 3 to 5 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E140800 Stream ID 0xF Stream Ptr 2DFE4230 Fin=1 Len=14 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E140800 newbytes=14 localWindow=12581726 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 trying to discard 13 bytes of padding +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 5 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E140800 id=0xF concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E140800 2DFE4230 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E140800 2DFE4230 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E140800 id=0xF concurrent=1 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4230 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E140800 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E140800 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 313 flags 4 id 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x4B priorityLen=0 stream=2DFE4670 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x4B fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4670 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4670 count=32768 state=4 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 39610 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 18:26:35 GMT +[19256:Socket Thread]: I/nsHttp etag: be800b0df29f9c95df9c3adf88eeb377 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 13 Oct 2019 17:00:17 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 4U6-Ta4iiswpgE1Ju82z1CG8wyrlLhO0l-MpoUMiU_B1FuHXOAU_QQ== +[19256:Socket Thread]: I/nsHttp age: 3541 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 39610 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 18:26:35 GMT +[19256:Socket Thread]: I/nsHttp etag: be800b0df29f9c95df9c3adf88eeb377 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 13 Oct 2019 17:00:17 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 4U6-Ta4iiswpgE1Ju82z1CG8wyrlLhO0l-MpoUMiU_B1FuHXOAU_QQ== +[19256:Socket Thread]: I/nsHttp age: 3541 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4B Stream Ptr 2DFE4670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4B newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11289990 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4670 count=32768 state=4 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4670 count=24576 state=4 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4B Stream Ptr 2DFE4670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4B newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11281798 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4670 count=24576 state=4 0x4B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4670 count=16748 state=4 0x4B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4670 count=16724 state=4 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /pagead/1p-user-list/881227315/?random=1578838241676&cv=9&fst=1578837600000&num=1&guid=ON&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&async=1&fmt=3&is_vtc=1&random=3090576712&resp=GooglemKTybQhCsO&rmt_tld=0&ipr=y HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.google.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: NID=195=eHXe_9hHidyBG98eYGraVgaL_uyBsP25yKyvxhF6HQKFUMdA0l-sXiqPxrQ9cS37j5nGQiN_W-z1vBK6KGDzUOhlqPmxomOWVGxgcQSRWzUYccJUMz3xnq616_GnJXQtcuSskEU5Ol1d1nbyP--OFQdEv9kmYHoBVQw1W2OwXIE; CONSENT=YES+DE.de+V12; ANID=AHWqTUnzF_wD91S8bfn0_xfOyhSTCgbN_DwX70NYFGhOtJVnTzI_HXngrQ3-LPYh; 1P_JAR=2020-01-11-21 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 0 340 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4B Stream Ptr 2DFE4670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4B newbytes=8192 unacked=24236 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11273606 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4B Stream Ptr 2DFE4670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4B newbytes=8192 unacked=24236 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11265414 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 0 7810 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 0 24 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 0 358 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6842 flags 0 id 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4B Stream Ptr 2DFE4670 Fin=0 Len=6842 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4B newbytes=6842 unacked=22886 localWindow=12543302 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6842 localWindow=11258572 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 0 6842 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4B Stream Ptr 2DFE4670 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4670 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x4b +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x4B concurrent=8 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x4B needscleanup=2DFE4670. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x4B to stream 2DFE4670 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4670 0x4B 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x4B deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 292 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: b5Z2avGr2uSII4DdguNmhTHen9RcOAVtfFLZFji84pbNzwYuzEkGBw== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 292 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: b5Z2avGr2uSII4DdguNmhTHen9RcOAVtfFLZFji84pbNzwYuzEkGBw== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 308 flags 4 id 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x4D priorityLen=0 stream=2DFE4780 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x4D fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4780 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=32768 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 20:49:04 GMT +[19256:Socket Thread]: I/nsHttp etag: a55cb11d5062f0112991ddbd01f8de32 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 20 Oct 2019 17:02:39 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: _5EY6tvwfUVQ_VVpk9Mvd8OSXeptb8gx-ctXb9r5o5k9sarzhZ7YZA== +[19256:Socket Thread]: I/nsHttp age: 62498 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 20:49:04 GMT +[19256:Socket Thread]: I/nsHttp etag: a55cb11d5062f0112991ddbd01f8de32 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 20 Oct 2019 17:02:39 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: _5EY6tvwfUVQ_VVpk9Mvd8OSXeptb8gx-ctXb9r5o5k9sarzhZ7YZA== +[19256:Socket Thread]: I/nsHttp age: 62498 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4D Stream Ptr 2DFE4780 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4D newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11250380 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=32768 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=24576 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4D Stream Ptr 2DFE4780 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4D newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11242188 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=24576 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=16743 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=16719 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 0 335 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4D Stream Ptr 2DFE4780 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4D newbytes=8192 unacked=24241 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11233996 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4D Stream Ptr 2DFE4780 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4D newbytes=8192 unacked=24241 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11225804 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 0 7815 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 0 24 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 0 353 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7550 flags 0 id 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4D Stream Ptr 2DFE4780 Fin=0 Len=7550 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4D newbytes=7550 unacked=23599 localWindow=12542594 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7550 localWindow=11218254 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 0 7550 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4D Stream Ptr 2DFE4780 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4780 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x4d +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x4D concurrent=7 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x4D needscleanup=2DFE4780. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x4D to stream 2DFE4780 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4780 0x4D 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x4D deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 316 flags 4 id 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x51 priorityLen=0 stream=2DFE4AB0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x51 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4AB0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4AB0 count=32768 state=4 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 32232 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 08:33:19 GMT +[19256:Socket Thread]: I/nsHttp etag: 944c320fce9ec488161a599685d06314 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 03 Nov 2019 17:03:48 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 9HjQltW8DUuMfgjEEdlEugBVzOKL-GuBrk4-nlXGVhfnJ62pJxAUBw== +[19256:Socket Thread]: I/nsHttp age: 3406 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 32232 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 08:33:19 GMT +[19256:Socket Thread]: I/nsHttp etag: 944c320fce9ec488161a599685d06314 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 03 Nov 2019 17:03:48 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: 9HjQltW8DUuMfgjEEdlEugBVzOKL-GuBrk4-nlXGVhfnJ62pJxAUBw== +[19256:Socket Thread]: I/nsHttp age: 3406 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x51 Stream Ptr 2DFE4AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x51 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11210062 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4AB0 count=32768 state=4 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4AB0 count=24576 state=4 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x51 Stream Ptr 2DFE4AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x51 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11201870 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4AB0 count=24576 state=4 0x51 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4AB0 count=16751 state=4 0x51 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4AB0 count=16727 state=4 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 0 343 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x51 Stream Ptr 2DFE4AB0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x51 newbytes=8192 unacked=24233 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11193678 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7656 flags 0 id 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x51 Stream Ptr 2DFE4AB0 Fin=0 Len=7656 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x51 newbytes=7656 unacked=23697 localWindow=12550680 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7656 localWindow=11186022 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 0 7656 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x51 Stream Ptr 2DFE4AB0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4AB0 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x51 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x51 concurrent=6 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x51 needscleanup=2DFE4AB0. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x51 to stream 2DFE4AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4AB0 0x51 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x51 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 316 flags 4 id 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x53 priorityLen=0 stream=2DFE4BC0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x53 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4BC0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4BC0 count=32768 state=4 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 30654 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 10:58:41 GMT +[19256:Socket Thread]: I/nsHttp etag: 078a80a83e416ca47a879254498794bf +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 11 Nov 2019 19:04:57 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: oJDrRD8xwgmVcc0qv1flXCxPUyYmLIVnvxzGsKYtnlkMCxR8ZaqWAw== +[19256:Socket Thread]: I/nsHttp age: 11521 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 30654 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 10:58:41 GMT +[19256:Socket Thread]: I/nsHttp etag: 078a80a83e416ca47a879254498794bf +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 11 Nov 2019 19:04:57 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: oJDrRD8xwgmVcc0qv1flXCxPUyYmLIVnvxzGsKYtnlkMCxR8ZaqWAw== +[19256:Socket Thread]: I/nsHttp age: 11521 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x53 Stream Ptr 2DFE4BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x53 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11177830 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4BC0 count=32768 state=4 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4BC0 count=24576 state=4 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x53 Stream Ptr 2DFE4BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x53 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11169638 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4BC0 count=24576 state=4 0x53 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4BC0 count=16751 state=4 0x53 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4BC0 count=16727 state=4 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 0 343 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x53 Stream Ptr 2DFE4BC0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x53 newbytes=8192 unacked=24233 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11161446 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6078 flags 0 id 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x53 Stream Ptr 2DFE4BC0 Fin=0 Len=6078 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x53 newbytes=6078 unacked=22119 localWindow=12552258 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6078 localWindow=11155368 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 0 6078 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x53 Stream Ptr 2DFE4BC0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4BC0 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x53 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x53 concurrent=5 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x53 needscleanup=2DFE4BC0. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x53 to stream 2DFE4BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4BC0 0x53 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x53 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 314 flags 4 id 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x57 priorityLen=0 stream=2DFE4890 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x57 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4890 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4890 count=32768 state=4 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 22635 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 22:33:34 GMT +[19256:Socket Thread]: I/nsHttp etag: aa9abaef999f9d4cf838d3b6c0d65688 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 24 Nov 2019 18:07:58 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: fdMxbHnd-mRD81VUcC1YPIXKSAeDbPgcm-MTaYhsD9rco6araBoYlg== +[19256:Socket Thread]: I/nsHttp age: 3406 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 22635 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 22:33:34 GMT +[19256:Socket Thread]: I/nsHttp etag: aa9abaef999f9d4cf838d3b6c0d65688 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 24 Nov 2019 18:07:58 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: fdMxbHnd-mRD81VUcC1YPIXKSAeDbPgcm-MTaYhsD9rco6araBoYlg== +[19256:Socket Thread]: I/nsHttp age: 3406 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x57 Stream Ptr 2DFE4890 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x57 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11147176 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4890 count=32768 state=4 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4890 count=24576 state=4 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x57 Stream Ptr 2DFE4890 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x57 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11138984 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4890 count=24576 state=4 0x57 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4890 count=16749 state=4 0x57 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4890 count=16725 state=4 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 Buffered 0 341 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6251 flags 0 id 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x57 Stream Ptr 2DFE4890 Fin=0 Len=6251 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x57 newbytes=6251 unacked=22294 localWindow=12560277 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6251 localWindow=11132733 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 Buffered 0 6251 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x57 Stream Ptr 2DFE4890 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4890 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x57 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x57 concurrent=4 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x57 needscleanup=2DFE4890. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x57 to stream 2DFE4890 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4890 0x57 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x57 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 317 flags 4 id 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x55 priorityLen=0 stream=2DFE4CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x55 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32768 state=4 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 30916 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 00:59:58 GMT +[19256:Socket Thread]: I/nsHttp etag: 36dec7cede308c392d64d771660ae5b0 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 17 Nov 2019 17:05:56 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: kEOsM7kOkWsNGCzPxhCcKbc3qHnepXK1h03KdgSD1_6wFxqqZN1BBg== +[19256:Socket Thread]: I/nsHttp age: 47444 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 30916 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 00:59:58 GMT +[19256:Socket Thread]: I/nsHttp etag: 36dec7cede308c392d64d771660ae5b0 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 17 Nov 2019 17:05:56 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: kEOsM7kOkWsNGCzPxhCcKbc3qHnepXK1h03KdgSD1_6wFxqqZN1BBg== +[19256:Socket Thread]: I/nsHttp age: 47444 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x55 Stream Ptr 2DFE4CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x55 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11124541 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32768 state=4 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=24576 state=4 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x55 Stream Ptr 2DFE4CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x55 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11116349 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=24576 state=4 0x55 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=16752 state=4 0x55 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=16728 state=4 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 0 344 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x55 Stream Ptr 2DFE4CD0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x55 newbytes=8192 unacked=24232 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11108157 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6340 flags 0 id 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x55 Stream Ptr 2DFE4CD0 Fin=0 Len=6340 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x55 newbytes=6340 unacked=22380 localWindow=12551996 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6340 localWindow=11101817 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 0 6340 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x55 Stream Ptr 2DFE4CD0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4CD0 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x55 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x55 concurrent=3 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x55 needscleanup=2DFE4CD0. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x55 to stream 2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4CD0 0x55 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x55 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 299 flags 4 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x49 priorityLen=0 stream=2DFE4560 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x49 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4560 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=32768 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 14:20:33 GMT +[19256:Socket Thread]: I/nsHttp etag: 3224ae30e430412abc65ba81f115f591 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 06 Oct 2019 17:00:48 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: dWuptFj8YCYi7n7IpQGFSGQYxWFqTUJseV_J21tXjpIwNaLmRGSF3w== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 14:20:33 GMT +[19256:Socket Thread]: I/nsHttp etag: 3224ae30e430412abc65ba81f115f591 +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 06 Oct 2019 17:00:48 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: dWuptFj8YCYi7n7IpQGFSGQYxWFqTUJseV_J21tXjpIwNaLmRGSF3w== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x49 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11093625 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=32768 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=24576 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x49 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11085433 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=24576 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=16734 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=16710 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 326 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x49 newbytes=8192 unacked=24250 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11077241 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x49 newbytes=8192 unacked=24250 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11069049 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 7824 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 24 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 344 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x49 newbytes=8192 unacked=24250 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11060857 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x49 newbytes=8192 unacked=24250 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11052665 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 7806 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 24 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCED800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED800 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2BCED800 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 362 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 4465 flags 0 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=0 Len=4465 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x49 newbytes=4465 unacked=20523 localWindow=12529295 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=4465 localWindow=11048200 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 0 4465 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x49 Stream Ptr 2DFE4560 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE4560 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x49 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x49 concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x49 needscleanup=2DFE4560. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x49 to stream 2DFE4560 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4560 0x49 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x49 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 372 flags 4 id 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x4F priorityLen=0 stream=2DFE49A0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x4F fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE49A0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 39880 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 00:10:49 GMT +[19256:Socket Thread]: I/nsHttp etag: e6b46ea7e1ddc9ef6e7839c32265bfbd +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 27 Oct 2019 17:18:36 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-edge-o15-rid: bewfy4jfckqg0zz_sRe8eC3iF73awI-cVVW7K2tTf_fjsfRpOLSdNg== +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Vic0p7SvxytU1Gqej4Jx-0Sex0klFdnOB9ssYXXFBZ3YGYad_NxTNQ== +[19256:Socket Thread]: I/nsHttp age: 50393 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 39880 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 00:10:49 GMT +[19256:Socket Thread]: I/nsHttp etag: e6b46ea7e1ddc9ef6e7839c32265bfbd +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 27 Oct 2019 17:18:36 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-edge-o15-rid: bewfy4jfckqg0zz_sRe8eC3iF73awI-cVVW7K2tTf_fjsfRpOLSdNg== +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: Vic0p7SvxytU1Gqej4Jx-0Sex0klFdnOB9ssYXXFBZ3YGYad_NxTNQ== +[19256:Socket Thread]: I/nsHttp age: 50393 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4F Stream Ptr 2DFE49A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4F newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11040008 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=24576 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4F Stream Ptr 2DFE49A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4F newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11031816 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=24576 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=16807 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=16783 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=16783 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=16783 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32369 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4F Stream Ptr 2DFE49A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4F newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11023624 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4F Stream Ptr 2DFE49A0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4F newbytes=8192 unacked=24576 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=11015432 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 0 7751 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 0 24 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 0 417 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7112 flags 0 id 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4F Stream Ptr 2DFE49A0 Fin=0 Len=7112 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x4F newbytes=7112 unacked=23496 localWindow=12543032 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7112 localWindow=11008320 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 0 7112 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x4F Stream Ptr 2DFE49A0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2DFE49A0 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x4f +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x4F concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x4F needscleanup=2DFE49A0. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x4F to stream 2DFE49A0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE49A0 0x4F 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x4F deferred +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=111858 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a225c-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 21:15:00 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 19:30:36 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1A) +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7787c17f7e39468ee68e2078b8b5894e.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: UBL5uw4JbijT1bG0EwKfjDapgOH8fIjaqm94FDCybvckhgS7vjluzw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=111858 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a225c-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 21:15:00 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 19:30:36 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1A) +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7787c17f7e39468ee68e2078b8b5894e.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: UBL5uw4JbijT1bG0EwKfjDapgOH8fIjaqm94FDCybvckhgS7vjluzw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 1 data len 467 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E140800 stream 0x11 priorityLen=0 stream=2DFE4DE0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E140800 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4DE0 response code 302 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4DE0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 302 Found +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp location: https://www.google.com/pagead/1p-conversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&sscte=1&crd=>d=&is_vtc=1&ocp_id=4igbXpi_IPXJogbyloboCQ&random=50008748&resp=GooglemKTybQhCsO +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 42 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml", CP="CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp location: https://www.google.com/pagead/1p-conversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&sscte=1&crd=>d=&is_vtc=1&ocp_id=4igbXpi_IPXJogbyloboCQ&random=50008748&resp=GooglemKTybQhCsO +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 42 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 0 data len 42 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E140800 Stream ID 0x11 Stream Ptr 2DFE4DE0 Fin=0 Len=42 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2E140800 id=0x11 newbytes=42 unacked=42 localWindow=12582870 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E140800 newbytes=42 localWindow=12581684 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4DE0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 0 data len 0 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E140800 Stream ID 0x11 Stream Ptr 2DFE4DE0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E140800 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E140800 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E140800 by ID 0x11 to stream 2DFE4DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E140800 2DFE4DE0 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E140800 2DFE4DE0 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E140800 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4DE0 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /pagead/1p-conversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&sscte=1&crd=>d=&is_vtc=1&ocp_id=4igbXpi_IPXJogbyloboCQ&random=50008748&resp=GooglemKTybQhCsO HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.google.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: NID=195=eHXe_9hHidyBG98eYGraVgaL_uyBsP25yKyvxhF6HQKFUMdA0l-sXiqPxrQ9cS37j5nGQiN_W-z1vBK6KGDzUOhlqPmxomOWVGxgcQSRWzUYccJUMz3xnq616_GnJXQtcuSskEU5Ol1d1nbyP--OFQdEv9kmYHoBVQw1W2OwXIE; CONSENT=YES+DE.de+V12; ANID=AHWqTUnzF_wD91S8bfn0_xfOyhSTCgbN_DwX70NYFGhOtJVnTzI_HXngrQ3-LPYh; 1P_JAR=2020-01-11-21 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 978 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: -5Dj9rwd5foUeHcyuZqWoVzdSNVgvEphJW0kcKvDU29TMLZs2NcjfA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 978 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:42 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: -5Dj9rwd5foUeHcyuZqWoVzdSNVgvEphJW0kcKvDU29TMLZs2NcjfA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2DFE4F80 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E147C00 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 1 data len 371 flags 24 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E147C00 stream 0xF priorityLen=5 stream=2DFE4340 end_stream=0 end_headers=4 priority_group=32 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E147C00 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4340 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-length: 65 +[19256:Socket Thread]: I/nsHttp content-type: image/gif;charset=utf-8 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp expires: Tue, 31 Mar 1981 05:00:00 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp server: tsa_b +[19256:Socket Thread]: I/nsHttp status: 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=631138519 +[19256:Socket Thread]: I/nsHttp x-connection-hash: 2bbc99a63e9cbb259b1b427d1febb7bf +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp x-response-time: 8 +[19256:Socket Thread]: I/nsHttp x-transaction: 0049a8430079ba43 +[19256:Socket Thread]: I/nsHttp x-twitter-response-tags: BouncerCompliant +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-length: 65 +[19256:Socket Thread]: I/nsHttp content-type: image/gif;charset=utf-8 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp expires: Tue, 31 Mar 1981 05:00:00 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp server: tsa_b +[19256:Socket Thread]: I/nsHttp status: 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=631138519 +[19256:Socket Thread]: I/nsHttp x-connection-hash: 2bbc99a63e9cbb259b1b427d1febb7bf +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp x-response-time: 8 +[19256:Socket Thread]: I/nsHttp x-transaction: 0049a8430079ba43 +[19256:Socket Thread]: I/nsHttp x-twitter-response-tags: BouncerCompliant +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 0 data len 65 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E147C00 Stream ID 0xF Stream Ptr 2DFE4340 Fin=1 Len=65 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E147C00 newbytes=65 localWindow=12582847 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147C00 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E147C00 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147C00 by ID 0xF to stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147C00 2DFE4340 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E147C00 2DFE4340 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147C00 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2DFE4E70 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ik3FfGeUEN3oGoqzKtkEnZf_GRq7ijkLIyaU7ker4EPVucFZZqlN4w== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ik3FfGeUEN3oGoqzKtkEnZf_GRq7ijkLIyaU7ker4EPVucFZZqlN4w== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /talkbox/guestbooks?guestbook_keys=GYW4NNEE6,GRW4NNE8Y,GY1X119GY,GR79335K6,G6XJKK0ER,GYQW7742Y,GYJ0PG186,GY4PK5MJ6,GRZJE7XG6,G63K077M6,G6MEJDD8R,GRW4W0E2Y HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /gts1o1 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.pki.goog +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 84 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: k7z2w2yjowgBM9QO1RA_UwGwU8UcEIkH_C_xiAz4_JA8u0ppB_sHOA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: k7z2w2yjowgBM9QO1RA_UwGwU8UcEIkH_C_xiAz4_JA8u0ppB_sHOA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/preferences HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /gts1o1 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.pki.goog +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 84 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=utf-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 16 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Content-Length, Accept-Encoding +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=utf-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 16 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Content-Length, Accept-Encoding +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2E147800 serial=0x12 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2E147800 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2E147800 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2E147800 trans=2E14AC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 261B8CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E147800 stream=261B8CD0 serial=18 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147800 mConnection=2E1841F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147800 sslsocketcontrol=2DFE4F80 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147800 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E147800 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 will write from Http2Stream 261B8CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 ReadSegments reader=2E14780C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8CD0 count=1501 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 261B8CD0 avail=1501 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2e147800 key=https://www.google.com/[]/[http2.18]/pagead/1p-user-list/881227315/?random=1578838241676&cv=9&fst=1578837600000&num=1&guid=ON&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&async=1&fmt=3&is_vtc=1&random=3090576712&resp=GooglemKTybQhCsO&rmt_tld=0&ipr=y requestcontext=240474c0 cache=0 hit=0 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E147800 stream=261B8CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E147800 counting stream 261B8CD0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E147800 stream=261B8CD0 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 Stream ID 0xF [session=2E147800] for URI /pagead/1p-user-list/881227315/?random=1578838241676&cv=9&fst=1578837600000&num=1&guid=ON&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&async=1&fmt=3&is_vtc=1&random=3090576712&resp=GooglemKTybQhCsO&rmt_tld=0&ipr=y +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8CD0 depends on background group for trans 2E14AC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 Generating 1078 bytes of HEADERS for stream 0xF with priority weight 11 dep 0x7 frames 1 uri=/pagead/1p-user-list/881227315/?random=1578838241676&cv=9&fst=1578837600000&num=1&guid=ON&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&data=channelName%3DMondo%3Bmodal%3DN%3BisAuthenticated%3Dno%3BmediaType%3Depisode%3BmediaId%3DGYW4NNEE6%3BseasonTitle%3DSeason%201%3BepisodeTitle%3DCommunity%20Profile%3BepisodeNumber%3D1%3BmediaTitle%3DBIGFOOT%3BextraTitle%3D%3Bname%3DEpisode%3Bpath%3D%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile%3Breferrer%3D%3Bsearch%3D%3Btitle%3DBIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV%3Burl%3Dhttps%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&frm=0&url=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&async=1&fmt=3&is_vtc=1&random=3090576712&resp=GooglemKTybQhCsO&rmt_tld=0&ipr=y +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 261B8CD0 used 1501 of 1501. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 261B8CD0 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8CD0 inline=1091 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E147800 stream=261B8CD0 result 0 len=1091 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=1091 rv=0 actual=1091 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8CD0 trans readsegments rv 0 read=1501 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 stream=261B8CD0 countread=1501 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 will write from Http2Stream 261B8CD0 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 ReadSegments reader=2E14780C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8CD0 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 stream=261B8CD0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2BCED400 serial=0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2BCED400 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2BCED400 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED400 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2BCED400 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2BCED400 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2BCED400 trans=2E14B000 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream 2BCED400 atrans=2E14B000 trans=2E14B000 session unusable - resched. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED400 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED400 mConnection=2E1639B0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED400 sslsocketcontrol=2DFE4E70 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED400 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCED400 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCED400 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCED400 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 ResumeRecv After early flush in ReadSegments +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED400 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED400 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED400 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4230 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E147800 stream=2DFE4230 serial=18 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 will write from Http2Stream 2DFE4230 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 ReadSegments reader=2E14780C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4230 count=1129 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4230 avail=1129 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2E147800 key=https://www.google.com/[]/[http2.18]/pagead/1p-conversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&sscte=1&crd=>d=&is_vtc=1&ocp_id=4igbXpi_IPXJogbyloboCQ&random=50008748&resp=GooglemKTybQhCsO requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E147800 stream=2DFE4230 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E147800 counting stream 2DFE4230 Currently 2 streams in session, high water mark is 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E147800 stream=2DFE4230 id=0x11 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 Stream ID 0x11 [session=2E147800] for URI /pagead/1p-conversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&sscte=1&crd=>d=&is_vtc=1&ocp_id=4igbXpi_IPXJogbyloboCQ&random=50008748&resp=GooglemKTybQhCsO +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4230 depends on background group for trans 2E14B000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4230 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 Generating 417 bytes of HEADERS for stream 0x11 with priority weight 11 dep 0x7 frames 1 uri=/pagead/1p-conversion/881227315/?random=1157545616&cv=9&fst=*&num=1&guid=ON&resp=GooglemKTybQhCsO&u_h=1440&u_w=2560&u_ah=1400&u_aw=2560&u_cd=24&u_his=1&u_tz=60&u_java=false&u_nplug=0&u_nmime=0&sendb=1&ig=1&frm=0&url=https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile&tiba=BIGFOOT%20Season%201%20Episode%201%20-%20Watch%20on%20VRV&hn=www.googleadservices.com&async=1&fmt=3&ctc_id=CAIVAgAAAB0CAAAA&ct_cookie_present=false&sscte=1&crd=>d=&is_vtc=1&ocp_id=4igbXpi_IPXJogbyloboCQ&random=50008748&resp=GooglemKTybQhCsO +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4230 used 1129 of 1129. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4230 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4230 inline=430 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E147800 stream=2DFE4230 result 0 len=430 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=430 rv=0 actual=430 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4230 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4230 trans readsegments rv 0 read=1129 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 stream=2DFE4230 countread=1129 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 will write from Http2Stream 2DFE4230 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4230 ReadSegments reader=2E14780C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4230 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4230 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4230 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147800 stream=2DFE4230 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCED400 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCED400 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED400 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 348 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 8BwMDuUF-0yUuxxREYXqjfzYr6gFqabUtiQ7xev9168tI7FEupmP0w== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 348 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 8BwMDuUF-0yUuxxREYXqjfzYr6gFqabUtiQ7xev9168tI7FEupmP0w== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 277 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: RGrRKFcySqz_-gCs_DIBtzf3kPjfjcRGCceYqGb_Ykz6YBPUGJUmSw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 277 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: RGrRKFcySqz_-gCs_DIBtzf3kPjfjcRGCceYqGb_Ykz6YBPUGJUmSw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E147800 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 1048576 +[19256:Socket Thread]: I/nsHttp Settings ID 6, Value 16384 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E147800 len=983041 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E147800 session window 65535 increased by 983041 now 1048576. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E147800 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCED400 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCED400 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2BCED400 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 2B2A4C00 trans=2BCEA000 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 2B2A4C00 ID is 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2BCF0000 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2E143C00 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2BCE7C00 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2E144800 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2E145400 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2E145000 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2E146400 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2E146000 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=2E147000 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 261B8AB0 11 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B2A4C00 0x11 rv 0 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 261B8AB0 11 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B2A4C00 0x11 rv 0 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 261B8AB0 11 13622 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=19146 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B2A4C00 0x11 rv 0 13622 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B2A4C00 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8AB0 count=19146 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B2A4C00 0x11 rv 0 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 261B8AB0 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A4C00 261B8AB0 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 261B8AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x47 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4450 count=32768 state=4 0x47 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4450 47 7747 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x47 rv 0 7747 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x47 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x49 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=32768 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4560 49 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x49 rv 0 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x4B +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4670 count=32768 state=4 0x4B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4670 4b 23566 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x4B rv 0 23566 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x4B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x4D +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=32768 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4780 4d 24269 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=8499 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x4D rv 0 24269 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x4F +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE49A0 count=32768 state=4 0x4F +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE49A0 4f 23496 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x4F rv 0 23496 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x4F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x51 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4AB0 count=32768 state=4 0x51 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4AB0 51 16191 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x51 rv 0 16191 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x51 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x53 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4BC0 count=32768 state=4 0x53 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4BC0 53 14613 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x53 rv 0 14613 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x53 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x55 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32768 state=4 0x55 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4CD0 55 14876 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x55 rv 0 14876 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x55 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x57 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4890 count=32768 state=4 0x57 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4890 57 6592 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x57 rv 0 6592 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x57 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x47 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x47 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4450 0x47 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4450 0x47 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x47 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4450 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x49 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=32768 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2DFE4560 49 4791 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=27977 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x49 rv 0 4791 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x4B +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x4B rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4670 0x4B 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4670 0x4b 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x4B concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4670 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x4D +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4780 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4780 count=8499 state=4 0x4D +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x4D rv 0 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4780 0x4D 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4780 0x4d 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x4D concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4780 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x4F +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE49A0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x4F rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE49A0 0x4F 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE49A0 0x4f 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x4F concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE49A0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x51 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x51 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4AB0 0x51 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4AB0 0x51 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x51 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x53 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4BC0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x53 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4BC0 0x53 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4BC0 0x53 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x53 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4BC0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x55 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x55 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4CD0 0x55 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4CD0 0x55 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x55 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x57 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4890 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x57 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4890 0x57 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4890 0x57 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x57 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4890 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x49 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4560 count=27977 state=4 0x49 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x49 rv 0 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4560 0x49 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4560 0x49 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x49 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4560 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/index HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp authorization: OAuth ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/seasons?series_id=G6QW774G6&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/series/G6QW774G6?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/index HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /v1/i HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: vrv-eec.etp-prod.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Content-Type: text/plain +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Content-Length: 870 +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /disc/private/v1/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/6182099/dynamic_watchlist?n=200&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Rpc2NcL3ByaXZhdGVcL3Y~XC9VU1wvTTNcL2Jvb21lcmFuZyxjYXJ0b29uaGFuZ292ZXIsY3J1bmNoeXJvbGwsZmFuZG9yLGhpZGl2ZSxtb25kbyxuaWNrc3BsYXQscm9vc3RlcnRlZXRoLHRlc3RlZCx2cnZzZWxlY3RcLzYxODIwOTlcLyoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE1Nzg4MzkxMzN9fX1dfQ__&Signature=bIwno1qq8o~dDrnflPHdQ3UWUqw2Tii3kz-11ZWS23i5Y-TMhkuKjhU8MMQfFcYLBiZB3JLVNSyu-gYORDU250vKbpTeDWR4ytyg3FlIecRLAo0qCpaJEvaBb~m-g1xASaEVP69M9CSuYcQL-i4Vkor4vgsSx3UYnafSpvzv9yKhZ-Wa4O~OJzmFX82zkPPN37DADioRZgFu7oLFqJiJdu~27VqvCjFi2UMrzcNz0TtyQiIlhnuN6HVd4J9BtQwSQU6UWrKRuS4chObrJA95tP-OZRUfK750wfMU8gkC4X7JcpAkgj-8dWGHFG0q0x5x8UMeAoFTRBFOZYprTFeTnw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/subscription/free_trial_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/subscription/subscribed_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/profile HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/subscription/subscribed_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/subscription/free_trial_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/free_trial_eligibility?product_id=30 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/premium_channels HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/playheads?content_ids=GYW4NNEE6&version=v2&mode=content HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /tr/?id=455459264638154&ev=PageView&dl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&rl=&if=false&ts=1578838242926&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838241662&coo=false&rqm=GET HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.facebook.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: fr=0n8W9lfceXj8iBEXM.AWUsIk8ihWrQWtdRe71d5XzJQWM.BdmQEk.me.F4Z.0.0.BeGib_.AWVPPtzY; datr=2RizXQE4d6kfxC1WaecEWG8c; sb=3hizXanMHhMK632SxXXV0x-o +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: xDIZrDtoQxUuJ0JRQlQ2ZXQQZNupf40u499opgg8GrKu1Caqyghtgw== +[19256:Socket Thread]: I/nsHttp Age: 196 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: xDIZrDtoQxUuJ0JRQlQ2ZXQQZNupf40u499opgg8GrKu1Caqyghtgw== +[19256:Socket Thread]: I/nsHttp Age: 196 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: H2WEl8pEIPuyP1Otr3FC6kACbD83MzLiGoJZnETnl9mtDgitm6p8CQ== +[19256:Socket Thread]: I/nsHttp Age: 196 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: H2WEl8pEIPuyP1Otr3FC6kACbD83MzLiGoJZnETnl9mtDgitm6p8CQ== +[19256:Socket Thread]: I/nsHttp Age: 196 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2DFE44E0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/episodes?season_id=G65PMMV06&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/seasons/G65PMMV06/extra_videos?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: IMST9RGfBdoeeO5u6gNV9eVQ8I-OKuEYK57FrNPUGZ4hUHzrZUj6sg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: IMST9RGfBdoeeO5u6gNV9eVQ8I-OKuEYK57FrNPUGZ4hUHzrZUj6sg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/index?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: rrKgYPCMDvQ1oJlDChumtcMj9uvp21Or6otjkq597eXQlrcLJFkscg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 2236 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: rrKgYPCMDvQ1oJlDChumtcMj9uvp21Or6otjkq597eXQlrcLJFkscg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/index?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /disc/private/v1/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/6182099/index?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Rpc2NcL3ByaXZhdGVcL3Y~XC9VU1wvTTNcL2Jvb21lcmFuZyxjYXJ0b29uaGFuZ292ZXIsY3J1bmNoeXJvbGwsZmFuZG9yLGhpZGl2ZSxtb25kbyxuaWNrc3BsYXQscm9vc3RlcnRlZXRoLHRlc3RlZCx2cnZzZWxlY3RcLzYxODIwOTlcLyoiLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE1Nzg4MzkxMzN9fX1dfQ__&Signature=bIwno1qq8o~dDrnflPHdQ3UWUqw2Tii3kz-11ZWS23i5Y-TMhkuKjhU8MMQfFcYLBiZB3JLVNSyu-gYORDU250vKbpTeDWR4ytyg3FlIecRLAo0qCpaJEvaBb~m-g1xASaEVP69M9CSuYcQL-i4Vkor4vgsSx3UYnafSpvzv9yKhZ-Wa4O~OJzmFX82zkPPN37DADioRZgFu7oLFqJiJdu~27VqvCjFi2UMrzcNz0TtyQiIlhnuN6HVd4J9BtQwSQU6UWrKRuS4chObrJA95tP-OZRUfK750wfMU8gkC4X7JcpAkgj-8dWGHFG0q0x5x8UMeAoFTRBFOZYprTFeTnw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=261B8B40 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: cmwfqiv8VwTdULacni3k3092ztrScKXiyFIuzw1KD1eVP2SypAM0-A== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: cmwfqiv8VwTdULacni3k3092ztrScKXiyFIuzw1KD1eVP2SypAM0-A== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/subscription/free_trial_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=utf-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 16 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Content-Length, Accept-Encoding +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=utf-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 16 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Content-Length, Accept-Encoding +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2E10C400 serial=0x14 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2E10C400 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2E10C400 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2E10C400 trans=2E14CC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E10C400 stream=2DFE4340 serial=20 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E10C400 mConnection=2E184710 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E10C400 sslsocketcontrol=261B8B40 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E10C400 version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E10C400 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 2DFE4340 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 ReadSegments reader=2E10C40C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4340 count=715 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4340 avail=715 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2E10C400 key=https://www.facebook.com/[]/[http2.20]/tr/?id=455459264638154&ev=PageView&dl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&rl=&if=false&ts=1578838242926&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838241662&coo=false&rqm=GET requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E10C400 stream=2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E10C400 counting stream 2DFE4340 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E10C400 stream=2DFE4340 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 Stream ID 0xF [session=2E10C400] for URI /tr/?id=455459264638154&ev=PageView&dl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&rl=&if=false&ts=1578838242926&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838241662&coo=false&rqm=GET +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4340 depends on background group for trans 2E14CC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4340 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 Generating 481 bytes of HEADERS for stream 0xF with priority weight 11 dep 0x7 frames 1 uri=/tr/?id=455459264638154&ev=PageView&dl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&rl=&if=false&ts=1578838242926&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838241662&coo=false&rqm=GET +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4340 used 715 of 715. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4340 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4340 inline=494 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E10C400 stream=2DFE4340 result 0 len=494 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=494 rv=0 actual=494 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4340 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 trans readsegments rv 0 read=715 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=2DFE4340 countread=715 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 2DFE4340 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4340 ReadSegments reader=2E10C40C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4340 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4340 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=2DFE4340 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ge95q_flDu5vaF6FT44YD1AWpctk-V9qZ_aEKeiMFypEsYv42x9uFw== +[19256:Socket Thread]: I/nsHttp Age: 190 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ge95q_flDu5vaF6FT44YD1AWpctk-V9qZ_aEKeiMFypEsYv42x9uFw== +[19256:Socket Thread]: I/nsHttp Age: 190 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: vJ9c22J4XzaqFjtMpGq79CoQd5SDreZ82-gmajwZSW1u2dx_NUmrhg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:43 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: vJ9c22J4XzaqFjtMpGq79CoQd5SDreZ82-gmajwZSW1u2dx_NUmrhg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/profile HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 1 data len 456 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E147800 stream 0x11 priorityLen=0 stream=2DFE4230 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E147800 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4230 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4230 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp content-security-policy: script-src 'none'; object-src 'none' +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 42 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp content-security-policy: script-src 'none'; object-src 'none' +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 42 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 0 data len 42 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E147800 Stream ID 0x11 Stream Ptr 2DFE4230 Fin=0 Len=42 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2E147800 id=0x11 newbytes=42 unacked=42 localWindow=12582870 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E147800 newbytes=42 localWindow=12582870 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4230 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 0 data len 0 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E147800 Stream ID 0x11 Stream Ptr 2DFE4230 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147800 id=0x11 concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E147800 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147800 by ID 0x11 to stream 2DFE4230 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147800 2DFE4230 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E147800 2DFE4230 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147800 id=0x11 concurrent=1 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4230 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E147800 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E147800 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=0 +[19256:Socket Thread]: I/nsHttp X-Trace-Id: dd6b9530-b500-4611-86ec-ee103a4a2358 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: S2sbliGcMRFxP65Kp2oLkakQGowvPaxfxM9UhjNvIKIOIYwzo_vP2Q== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=0 +[19256:Socket Thread]: I/nsHttp X-Trace-Id: dd6b9530-b500-4611-86ec-ee103a4a2358 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: S2sbliGcMRFxP65Kp2oLkakQGowvPaxfxM9UhjNvIKIOIYwzo_vP2Q== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: tt4KsuXXdVM3CXa7jtK4sPJYOx-FFwvMNRG_FigfvioIhgBX2DAF3g== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: tt4KsuXXdVM3CXa7jtK4sPJYOx-FFwvMNRG_FigfvioIhgBX2DAF3g== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/subscription/subscribed_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 1 data len 41 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E147800 stream 0xF priorityLen=0 stream=261B8CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E147800 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 261B8CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8CD0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp content-security-policy: script-src 'none'; object-src 'none' +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 42 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp content-security-policy: script-src 'none'; object-src 'none' +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 42 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 0 data len 42 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E147800 Stream ID 0xF Stream Ptr 261B8CD0 Fin=0 Len=42 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2E147800 id=0xF newbytes=42 unacked=42 localWindow=12582870 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E147800 newbytes=42 localWindow=12582828 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8CD0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E147800 Stream ID 0xF Stream Ptr 261B8CD0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147800 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E147800 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147800 by ID 0xF to stream 261B8CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147800 261B8CD0 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E147800 261B8CD0 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147800 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 261B8CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 4 data len 30 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E10C400 SETTINGS Control Frame with 5 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 1, Value 4096 +[19256:Socket Thread]: I/nsHttp Compression header table setting received: 4096 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16384 +[19256:Socket Thread]: I/nsHttp Settings ID 6, Value 131072 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 len=10420225 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 session window 65535 increased by 10420225 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E10C400 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 8 data len 4 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 len=10420224 Stream 0xF. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 stream 0xF window 65536 increased by 10420224 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 1 data len 185 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E10C400 stream 0xF priorityLen=0 stream=2DFE4340 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E10C400 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4340 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 21 Dec 2012 00:00:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate, max-age=0 +[19256:Socket Thread]: I/nsHttp set-cookie: +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 44 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 21 Dec 2012 00:00:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate, max-age=0 +[19256:Socket Thread]: I/nsHttp set-cookie: +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 44 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 0 data len 44 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E10C400 Stream ID 0xF Stream Ptr 2DFE4340 Fin=1 Len=44 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E10C400 newbytes=44 localWindow=12582868 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E10C400 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 by ID 0xF to stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 2DFE4340 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E10C400 2DFE4340 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4340 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: JZdKWeF7u0Q9JwPZ0PnxTPX0wLrayKFUwZ0xTrKxeQtZPI0bK5VlWg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: JZdKWeF7u0Q9JwPZ0PnxTPX0wLrayKFUwZ0xTrKxeQtZPI0bK5VlWg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/subscription/subscribed_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:26 GMT +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp X-Trace-Id: d33afb00-f304-422b-b97a-b7cfdf75b780 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 18SFEJAAPys-EGaWqeJYvgCr4OcAlvSgmAzhc3VGOVhoeXMJxf26YQ== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:26 GMT +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp X-Trace-Id: d33afb00-f304-422b-b97a-b7cfdf75b780 +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 18SFEJAAPys-EGaWqeJYvgCr4OcAlvSgmAzhc3VGOVhoeXMJxf26YQ== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /tr/ HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.facebook.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Content-Length: 4989 +[19256:Main Thread]: I/nsHttp Content-Type: multipart/form-data; boundary=---------------------------5968466224607 +[19256:Main Thread]: I/nsHttp Cookie: fr=0n8W9lfceXj8iBEXM.AWUsIk8ihWrQWtdRe71d5XzJQWM.BdmQEk.me.F4Z.0.0.BeGib_.AWVPPtzY; datr=2RizXQE4d6kfxC1WaecEWG8c; sb=3hizXanMHhMK632SxXXV0x-o +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 261B8CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E10C400 stream=261B8CD0 serial=20 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 261B8CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 ReadSegments reader=2E10C40C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8CD0 count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 261B8CD0 avail=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E10C400 stream=261B8CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E10C400 counting stream 261B8CD0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E10C400 stream=261B8CD0 id=0x11 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 Stream ID 0x11 [session=2E10C400] for URI /tr/ +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8CD0 depends on background group for trans 2E10F400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 261B8CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 Generating 142 bytes of HEADERS for stream 0x11 with priority weight 1 dep 0x7 frames 1 uri=/tr/ +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 261B8CD0 used 631 of 2048. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 261B8CD0 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8CD0 inline=155 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E10C400 stream=261B8CD0 result 0 len=155 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=155 rv=0 actual=155 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8CD0 count=1417 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream this=261B8CD0 id 0x11 send calculation avail=1417 chunksize=16000 stream window=65536 session window=10485760 max frame=16384 USING=1417 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 id 0x11 request len remaining 4989, count avail 1417, chunk used 1417 +[19256:Socket Thread]: I/nsHttp Http2Stream::GenerateDataFrameHeader 261B8CD0 len=1417 last=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8CD0 inline=9 stream=1417 +[19256:Socket Thread]: I/nsHttp Coalesce Transmit +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E10C400 stream=261B8CD0 result 0 len=1426 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=1426 rv=0 actual=1426 +[19256:Socket Thread]: I/nsHttp TransmitFrame() rv=0 returning 1417 data bytes. Header is 0 Body is 0. +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8CD0 trans readsegments rv 0 read=2048 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=261B8CD0 countread=2048 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 261B8CD0 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 ReadSegments reader=2E10C40C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 261B8CD0 count=3572 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream this=261B8CD0 id 0x11 send calculation avail=3572 chunksize=16000 stream window=64119 session window=10484343 max frame=16384 USING=3572 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 id 0x11 request len remaining 3572, count avail 3572, chunk used 3572 +[19256:Socket Thread]: I/nsHttp Http2Stream::GenerateDataFrameHeader 261B8CD0 len=3572 last=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 261B8CD0 inline=9 stream=3572 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E10C400 stream=261B8CD0 result 0 len=9 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for regular session=2E10C400 stream=261B8CD0 result 0 len=3572 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=3581 rv=0 actual=3581 +[19256:Socket Thread]: I/nsHttp TransmitFrame() rv=0 returning 3572 data bytes. Header is 0 Body is 0. +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8CD0 trans readsegments rv 0 read=3572 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=261B8CD0 countread=3572 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 261B8CD0 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 261B8CD0 ReadSegments reader=2E10C40C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 261B8CD0 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 261B8CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=261B8CD0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: wu7sklffZcsEKDr32UmlK9IG2DKeJ2h8WbLyyYtgUjUD88NMTImUJQ== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: wu7sklffZcsEKDr32UmlK9IG2DKeJ2h8WbLyyYtgUjUD88NMTImUJQ== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/subscription/free_trial_products HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 90 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Z6cFOzl9hMINPFxfuLe72co8swxAxo3MF9hLR1ILVjOY8A-Nu67I9g== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 90 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Z6cFOzl9hMINPFxfuLe72co8swxAxo3MF9hLR1ILVjOY8A-Nu67I9g== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 8 data len 4 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 len=10420224 Stream 0x11. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 stream 0x11 window 60547 increased by 10420224 now 10480771. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 1 data len 47 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E10C400 stream 0x11 priorityLen=0 stream=261B8CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E10C400 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 261B8CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 261B8CD0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: text/plain +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: +[19256:Socket Thread]: I/nsHttp access-control-allow-credentials: true +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 0 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: text/plain +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: +[19256:Socket Thread]: I/nsHttp access-control-allow-credentials: true +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 0 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 0 data len 0 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E10C400 Stream ID 0x11 Stream Ptr 261B8CD0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 261B8CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E10C400 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 by ID 0x11 to stream 261B8CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 261B8CD0 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E10C400 261B8CD0 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 261B8CD0 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 491 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: qswAen8RtLKsX0MLMJLHyZH2ZkMHw4G41BSr6XHYBxlVtTB_B8PWVA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 491 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: qswAen8RtLKsX0MLMJLHyZH2ZkMHw4G41BSr6XHYBxlVtTB_B8PWVA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 306 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: eVkCxJOWwLBaCFMn8IcowY1XrhbahWRVYF7jPrhdCguZUsBczA2jwg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 306 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: eVkCxJOWwLBaCFMn8IcowY1XrhbahWRVYF7jPrhdCguZUsBczA2jwg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 306 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: bxxL_7x4Kpsy1ABxCivmfunQKTMPnbFjU7MynbDqwKs_3GFQyQLIeg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 306 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: bxxL_7x4Kpsy1ABxCivmfunQKTMPnbFjU7MynbDqwKs_3GFQyQLIeg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 2hc1T3hDogqmKmEqpcPFxZhaZgm-IM5kU0kJu771KAAo6SQj3Vf_qw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 2hc1T3hDogqmKmEqpcPFxZhaZgm-IM5kU0kJu771KAAo6SQj3Vf_qw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/resize/60x60/avatars/avatar_mondo_cat_agent.png HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2DFE4CD0 serial=1 NextID=0x59 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4CD0 count=583 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4CD0 avail=583 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/resize/60x60/avatars/avatar_mondo_cat_agent.png requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2DFE4CD0 Currently 1 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2DFE4CD0 id=0x59 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 Stream ID 0x59 [session=25499800] for URI /imgsrv/display/resize/60x60/avatars/avatar_mondo_cat_agent.png +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4CD0 depends on background group for trans 26202000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 Generating 90 bytes of HEADERS for stream 0x59 with priority weight 11 dep 0x7 frames 1 uri=/imgsrv/display/resize/60x60/avatars/avatar_mondo_cat_agent.png +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4CD0 used 583 of 583. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4CD0 0x59 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4CD0 inline=103 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2DFE4CD0 result 0 len=103 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=103 rv=0 actual=103 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 trans readsegments rv 0 read=583 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4CD0 countread=583 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2DFE4CD0 0x59 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 0x59: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2DFE4CD0 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/free_trial_eligibility?product_id=30 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: _Knu0WaEd_wr1xGuVMbAGm6mshKJMKjcm_YJmuUxcubYw668hd09mw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: _Knu0WaEd_wr1xGuVMbAGm6mshKJMKjcm_YJmuUxcubYw668hd09mw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/premium_channels HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 34Yvw_EEKFV4u6MfxDbQVzL7KYNDb9pKhb1XUzf_Q1ThI3G1X5ruGg== +[19256:Socket Thread]: I/nsHttp Age: 197 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 34Yvw_EEKFV4u6MfxDbQVzL7KYNDb9pKhb1XUzf_Q1ThI3G1X5ruGg== +[19256:Socket Thread]: I/nsHttp Age: 197 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 292 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 3Q7Ge-FoMlFKkccdh5kcNso9Q75lI0h-MomJuHY_LBswxEXS66vxGg== +[19256:Socket Thread]: I/nsHttp Age: 197 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 292 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 3Q7Ge-FoMlFKkccdh5kcNso9Q75lI0h-MomJuHY_LBswxEXS66vxGg== +[19256:Socket Thread]: I/nsHttp Age: 197 +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /talkbox/guestbooks?guestbook_keys=GYW4NNEE6,GRW4NNE8Y,GY1X119GY,GR79335K6,G6XJKK0ER,GYQW7742Y,GYJ0PG186,GY4PK5MJ6,GRZJE7XG6,G63K077M6,G6MEJDD8R,GRW4W0E2Y HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 1X5yvTwvUyiNKLYt9ImoLNm71GLCoen4ri_FQKz0W2UfQxqL6Vx8_w== +[19256:Socket Thread]: I/nsHttp Age: 190 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:34 GMT +[19256:Socket Thread]: I/nsHttp Microcache: HIT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 1X5yvTwvUyiNKLYt9ImoLNm71GLCoen4ri_FQKz0W2UfQxqL6Vx8_w== +[19256:Socket Thread]: I/nsHttp Age: 190 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: J6QgINjBrSSqTTJJpYgkt6fEMlNA3lAeD1I5njJ3H0CM0SNt2qC9sw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: J6QgINjBrSSqTTJJpYgkt6fEMlNA3lAeD1I5njJ3H0CM0SNt2qC9sw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: QBa344qoTL5II1pPtaCIlVxLplhyqaKL1ogKUnlK1N3fP2dxYXh4uA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: QBa344qoTL5II1pPtaCIlVxLplhyqaKL1ogKUnlK1N3fP2dxYXh4uA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/playheads?content_ids=GYW4NNEE6&version=v2&mode=content HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 304 flags 4 id 0x59 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x59 priorityLen=0 stream=2DFE4CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x59 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32768 state=4 0x59 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 5410 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 12:43:25 GMT +[19256:Socket Thread]: I/nsHttp etag: 622af0a534c6790f1fda73f4d5898183 +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 06 Dec 2018 21:34:06 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: fEbfuURZ2IWczMJnBfA1tOFFltX2iFZKqoq2zVIOeO5VFcmU-su2OQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/png +[19256:Socket Thread]: I/nsHttp content-length: 5410 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sat, 11 Jan 2020 12:43:25 GMT +[19256:Socket Thread]: I/nsHttp etag: 622af0a534c6790f1fda73f4d5898183 +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 06 Dec 2018 21:34:06 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: fEbfuURZ2IWczMJnBfA1tOFFltX2iFZKqoq2zVIOeO5VFcmU-su2OQ== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 5410 flags 0 id 0x59 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x59 Stream Ptr 2DFE4CD0 Fin=0 Len=5410 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x59 newbytes=5410 unacked=5410 localWindow=12577502 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=5410 localWindow=11002910 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32768 state=4 0x59 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x59 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x59 Stream Ptr 2DFE4CD0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x59 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x59 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x59 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x59 to stream 2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2DFE4CD0 0x59 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2DFE4CD0 0x59 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x59 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4CD0 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/playheads?content_ids=GYW4NNEE6,GRW4NNE8Y,GY1X119GY,GR79335K6,G6XJKK0ER,GYQW7742Y,GYJ0PG186,GY4PK5MJ6,GRZJE7XG6,G63K077M6,G6MEJDD8R,GRW4W0E2Y&version=v2&mode=content HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /track/up/?adv=z4iwyf7&ref=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&upid=rsfvgcn&upv=1.1.0 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: insight.adsrvr.org +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: TDID=8e17a054-a89c-45ba-adcb-0da5e7fffa00; TDCPM=CAESFAoFdGFwYWQSCwjSy5Gi9LGLOBAFEhUKBmdvb2dsZRILCNyN0c_1q4s4EAUSGQoKcmlnaHRtZWRpYRILCOTf66yMrIs4EAUSFwoIYXBwbmV4dXMSCwiI2_XEjKyLOBAFEhYKB2FkZHRoaXMSCwiix9bsnKyLOBAFEhYKB2JsdWVrYWkSCwiOkIbvnKyLOBAFGAUoAzILCNrR2d_v3Is4EAVCDyINCAESCQoFdGllcjMQAVIVCgZnb29nbGUSCwiEh5TC9auLOBAFUhYKB3J1Ymljb24SCwiEh5TC9auLOBAFUhcKCGFwcG5leHVzEgsI1vHGmYysizgQBVIZCgpyaWdodG1lZGlhEgsI1vHGmYysizgQBVIVCgZhZGFwdHYSCwim7pLC9auLOBAFUhgKCWFvbGFkdGVjaBILCO6Q9bbUvYs4EAVSFQoGY2FzYWxlEgsI7pD1ttS9izgQBVIXCghwdWJtYXRpYxILCO6Q9bbUvYs4EAVSGAoJYmlkc3dpdGNoEgsI1vHGmYysizgQBVoHejRpd3lmN2AB +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp Upgrade-Insecure-Requests: 1 +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0&tpx_cb=twttr.conversion.loadPixels&tw_document_href=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: analytics.twitter.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Cookie: personalization_id="v1_YEmmlOqdUsv6jAYrsrVt2Q=="; tfw_exp=0 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E147C00 stream=2DFE4DE0 serial=17 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 will write from Http2Stream 2DFE4DE0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 ReadSegments reader=2E147C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4DE0 count=646 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4DE0 avail=646 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2E147C00 key=https://analytics.twitter.com/[]/[http2.17]/i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0&tpx_cb=twttr.conversion.loadPixels&tw_document_href=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E147C00 stream=2DFE4DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E147C00 counting stream 2DFE4DE0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E147C00 stream=2DFE4DE0 id=0x11 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 Stream ID 0x11 [session=2E147C00] for URI /i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0&tpx_cb=twttr.conversion.loadPixels&tw_document_href=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4DE0 depends on background group for trans 2E111C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4DE0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 Generating 232 bytes of HEADERS for stream 0x11 with priority weight 21 dep 0x7 frames 1 uri=/i/adsct?p_id=Twitter&p_user_id=0&txn_id=nvpat&events=%5B%5B%22pageview%22%2Cnull%5D%5D&tw_sale_amount=0&tw_order_quantity=0&tw_iframe_status=0&tpx_cb=twttr.conversion.loadPixels&tw_document_href=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4DE0 used 646 of 646. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4DE0 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4DE0 inline=245 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E147C00 stream=2DFE4DE0 result 0 len=245 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147C00 sz=245 rv=0 actual=245 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4DE0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4DE0 trans readsegments rv 0 read=646 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 stream=2DFE4DE0 countread=646 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 will write from Http2Stream 2DFE4DE0 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4DE0 ReadSegments reader=2E147C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4DE0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4DE0 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4DE0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E147C00 stream=2DFE4DE0 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/accounts/6182099/linked_partners HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 172 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: a8klapXCQzqUwNVimHXJHXovGVi_ep5VeWchB6uAHn58lrcRXvssRw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 172 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: a8klapXCQzqUwNVimHXJHXovGVi_ep5VeWchB6uAHn58lrcRXvssRw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 1027 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: slZmbD4D2r_fdW9mP0S4ZOx45omzKKC6fDmMkOxbpGZFhdAtLFKjIQ== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 1027 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: slZmbD4D2r_fdW9mP0S4ZOx45omzKKC6fDmMkOxbpGZFhdAtLFKjIQ== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 348 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ew-WFa94KxASvisGVW1Lty-8Vz4RhC0Erj5-__6Z5f5spGGXxLps0g== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 348 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ew-WFa94KxASvisGVW1Lty-8Vz4RhC0Erj5-__6Z5f5spGGXxLps0g== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 1 data len 188 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E147C00 stream 0x11 priorityLen=0 stream=2DFE4DE0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E147C00 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4DE0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4DE0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-length: 57 +[19256:Socket Thread]: I/nsHttp content-type: application/javascript;charset=utf-8 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp expires: Tue, 31 Mar 1981 05:00:00 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp p3p: CP="CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT" +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp server: tsa_b +[19256:Socket Thread]: I/nsHttp status: 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=631138519 +[19256:Socket Thread]: I/nsHttp x-connection-hash: 2bbc99a63e9cbb259b1b427d1febb7bf +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp x-response-time: 13 +[19256:Socket Thread]: I/nsHttp x-transaction: 00a5fd0f00c99a0f +[19256:Socket Thread]: I/nsHttp x-twitter-response-tags: BouncerCompliant +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-length: 57 +[19256:Socket Thread]: I/nsHttp content-type: application/javascript;charset=utf-8 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp expires: Tue, 31 Mar 1981 05:00:00 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp p3p: CP="CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT" +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp server: tsa_b +[19256:Socket Thread]: I/nsHttp status: 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=631138519 +[19256:Socket Thread]: I/nsHttp x-connection-hash: 2bbc99a63e9cbb259b1b427d1febb7bf +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp x-response-time: 13 +[19256:Socket Thread]: I/nsHttp x-transaction: 00a5fd0f00c99a0f +[19256:Socket Thread]: I/nsHttp x-twitter-response-tags: BouncerCompliant +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 0 data len 57 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E147C00 Stream ID 0x11 Stream Ptr 2DFE4DE0 Fin=1 Len=57 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E147C00 newbytes=57 localWindow=12582790 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4DE0 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147C00 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E147C00 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147C00 by ID 0x11 to stream 2DFE4DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E147C00 2DFE4DE0 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E147C00 2DFE4DE0 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E147C00 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4DE0 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: e-sNNsJ2HrrHBFo1sNbhkOkGRknLZC54Tw_9yIXEfRQRQoSE0mxdEg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: e-sNNsJ2HrrHBFo1sNbhkOkGRknLZC54Tw_9yIXEfRQRQoSE0mxdEg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 5cUWn4GfmE3C_hqgORS40AunIHCZ8UUtxPWHcfY3nkSS-9hYHnpNgw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 5cUWn4GfmE3C_hqgORS40AunIHCZ8UUtxPWHcfY3nkSS-9hYHnpNgw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: eULqb1JfJ1f5MPe558ZGyw_HUgteNl7z9SRQTxX-Dv-8w85YnIF2-w== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: eULqb1JfJ1f5MPe558ZGyw_HUgteNl7z9SRQTxX-Dv-8w85YnIF2-w== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2EA5F0A0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/playheads?content_ids=GYW4NNEE6,GRW4NNE8Y,GY1X119GY,GR79335K6,G6XJKK0ER,GYQW7742Y,GYJ0PG186,GY4PK5MJ6,GRZJE7XG6,G63K077M6,G6MEJDD8R,GRW4W0E2Y&version=v2&mode=content HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/linked_partners HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/client/config HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/objects/GYW4NNEE6?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp OPTIONS /core/up_next?account_id=6182099&mode=episode&episode_id=GYW4NNEE6&version=v2 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Access-Control-Request-Method: GET +[19256:Main Thread]: I/nsHttp Access-Control-Request-Headers: authorization +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2E149000 serial=0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2E149000 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2E149000 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2E149000 trans=2E10FC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E149000 stream=2DFE4CD0 serial=21 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E149000 mConnection=28CC5850 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E149000 sslsocketcontrol=2EA5F0A0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E149000 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E149000 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 will write from Http2Stream 2DFE4CD0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 ReadSegments reader=2E14900C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2DFE4CD0 count=1129 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2DFE4CD0 avail=1129 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2E149000 key=https://insight.adsrvr.org/[]/[http2.21]/track/up/?adv=z4iwyf7&ref=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&upid=rsfvgcn&upv=1.1.0 requestcontext=26027790 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E149000 stream=2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E149000 counting stream 2DFE4CD0 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E149000 stream=2DFE4CD0 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 Stream ID 0xF [session=2E149000] for URI /track/up/?adv=z4iwyf7&ref=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&upid=rsfvgcn&upv=1.1.0 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4CD0 depends on background group for trans 2E10FC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2DFE4CD0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 Generating 821 bytes of HEADERS for stream 0xF with priority weight 20 dep 0x7 frames 1 uri=/track/up/?adv=z4iwyf7&ref=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&upid=rsfvgcn&upv=1.1.0 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2DFE4CD0 used 1129 of 1129. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2DFE4CD0 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2DFE4CD0 inline=834 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E149000 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E149000 stream=2DFE4CD0 result 0 len=834 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E149000 sz=834 rv=0 actual=834 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4CD0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 trans readsegments rv 0 read=1129 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E149000 stream=2DFE4CD0 countread=1129 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 will write from Http2Stream 2DFE4CD0 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2DFE4CD0 ReadSegments reader=2E14900C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2DFE4CD0 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2DFE4CD0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E149000 stream=2DFE4CD0 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vilos/assets/vendri.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2F528120 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2F528120 serial=1 NextID=0x5B (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528120 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528120 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2F528120 count=526 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2F528120 avail=526 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vilos/assets/vendri.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2F528120 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2F528120 Currently 1 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2F528120 id=0x5B concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528120 Stream ID 0x5B [session=25499800] for URI /vilos/assets/vendri.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528120 depends on background group for trans 28C5E000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528120 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528120 Generating 92 bytes of HEADERS for stream 0x5B with priority weight 20 dep 0x7 frames 1 uri=/vilos/assets/vendri.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2F528120 used 526 of 526. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2F528120 0x5B 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2F528120 inline=105 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2F528120 result 0 len=105 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=105 rv=0 actual=105 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528120 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528120 trans readsegments rv 0 read=526 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528120 countread=526 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528120 0x5B block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528120 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528120 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528120 0x5B: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528120 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528120 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vilos/assets/shaka-player.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2F528230 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2F528230 serial=1 NextID=0x5D (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528230 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528230 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2F528230 count=532 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2F528230 avail=532 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vilos/assets/shaka-player.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2F528230 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2F528230 Currently 2 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2F528230 id=0x5D concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528230 Stream ID 0x5D [session=25499800] for URI /vilos/assets/shaka-player.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528230 depends on background group for trans 28C5EC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528230 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528230 Generating 66 bytes of HEADERS for stream 0x5D with priority weight 20 dep 0x7 frames 1 uri=/vilos/assets/shaka-player.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2F528230 used 532 of 532. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2F528230 0x5D 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2F528230 inline=79 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2F528230 result 0 len=79 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=79 rv=0 actual=79 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528230 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528230 trans readsegments rv 0 read=532 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528230 countread=532 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528230 0x5D block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528230 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528230 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528230 0x5D: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528230 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528230 stream send complete +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:29 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: IkCJg1qbEhkfvsBAKnNHip7ZQPzebIbbHm8OV1SQRbQ8hVo04SsSgQ== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:29 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: IkCJg1qbEhkfvsBAKnNHip7ZQPzebIbbHm8OV1SQRbQ8hVo04SsSgQ== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/episodes/GYW4NNEE6?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E149000 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 128 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16777215 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E149000 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E149000 len=2147418112 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E149000 session window 65535 increased by 2147418112 now 2147483647. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E149000 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 1 data len 801 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E149000 stream 0xF priorityLen=0 stream=2DFE4CD0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E149000 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2DFE4CD0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp content-type: text/html; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: private,no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp x-aspnet-version: 4.0.30319 +[19256:Socket Thread]: I/nsHttp set-cookie: TDID=8e17a054-a89c-45ba-adcb-0da5e7fffa00; domain=.adsrvr.org; expires=Tue, 12-Jan-2021 14:10:44 GMT; path=/; SameSite=None +TDCPM=CAESFAoFdGFwYWQSCwjSy5Gi9LGLOBAFEhUKBmdvb2dsZRILCNyN0c_1q4s4EAUSGQoKcmlnaHRtZWRpYRILCOTf66yMrIs4EAUSFwoIYXBwbmV4dXMSCwiI2_XEjKyLOBAFEhYKB2FkZHRoaXMSCwiix9bsnKyLOBAFEhYKB2JsdWVrYWkSCwiOkIbvnKyLOBAFGAUoAzILCOzC8qT-3Is4EAVCDyINCAESCQoFdGllcjMQAVIVCgZnb29nbGUSCwiEh5TC9auLOBAFUhYKB3J1Ymljb24SCwiEh5TC9auLOBAFUhcKCGFwcG5leHVzEgsI1vHGmYysizgQBVIZCgpyaWdodG1lZGlhEgsI1vHGmYysizgQBVIVCgZhZGFwdHYSCwim7pLC9auLOBAFUhgKCWFvbGFkdGVjaBILCO6Q9bbUvYs4EAVSFQoGY2FzYWxlEgsI7pD1ttS9izgQBVIXCghwdWJtYXRpYxILCO6Q9bbUvYs4EAVSGAoJYmlkc3dpdGNoEgsI1vHGmYysizgQBVoHejRpd3lmN2AB; domain=.adsrvr.org; expires=Tue, 12-Jan-2021 14:10:44 GMT; path=/; SameSite=None +[19256:Socket Thread]: I/nsHttp p3p: CP="NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV" +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp content-type: text/html; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: private,no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp x-aspnet-version: 4.0.30319 +[19256:Socket Thread]: I/nsHttp set-cookie: TDID=8e17a054-a89c-45ba-adcb-0da5e7fffa00; domain=.adsrvr.org; expires=Tue, 12-Jan-2021 14:10:44 GMT; path=/; SameSite=None +[19256:Socket Thread]: I/nsHttp set-cookie: TDCPM=CAESFAoFdGFwYWQSCwjSy5Gi9LGLOBAFEhUKBmdvb2dsZRILCNyN0c_1q4s4EAUSGQoKcmlnaHRtZWRpYRILCOTf66yMrIs4EAUSFwoIYXBwbmV4dXMSCwiI2_XEjKyLOBAFEhYKB2FkZHRoaXMSCwiix9bsnKyLOBAFEhYKB2JsdWVrYWkSCwiOkIbvnKyLOBAFGAUoAzILCOzC8qT-3Is4EAVCDyINCAESCQoFdGllcjMQAVIVCgZnb29nbGUSCwiEh5TC9auLOBAFUhYKB3J1Ymljb24SCwiEh5TC9auLOBAFUhcKCGFwcG5leHVzEgsI1vHGmYysizgQBVIZCgpyaWdodG1lZGlhEgsI1vHGmYysizgQBVIVCgZhZGFwdHYSCwim7pLC9auLOBAFUhgKCWFvbGFkdGVjaBILCO6Q9bbUvYs4EAVSFQoGY2FzYWxlEgsI7pD1ttS9izgQBVIXCghwdWJtYXRpYxILCO6Q9bbUvYs4EAVSGAoJYmlkc3dpdGNoEgsI1vHGmYysizgQBVoHejRpd3lmN2AB; domain=.adsrvr.org; expires=Tue, 12-Jan-2021 14:10:44 GMT; path=/; SameSite=None +[19256:Socket Thread]: I/nsHttp p3p: CP="NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV" +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 0 data len 397 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E149000 Stream ID 0xF Stream Ptr 2DFE4CD0 Fin=0 Len=397 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2E149000 id=0xF newbytes=397 unacked=397 localWindow=12582515 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E149000 newbytes=397 localWindow=12582515 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32371 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E149000 Stream ID 0xF Stream Ptr 2DFE4CD0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2DFE4CD0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2DFE4CD0 count=32371 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 2E149000 - recorded downstream fin of stream 2DFE4CD0 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E149000 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E149000 stream=2DFE4CD0 0xF cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E149000 2DFE4CD0 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E149000 2DFE4CD0 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E149000 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2DFE4CD0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 buffering frame header read failure 80470007 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /universal_pixel.1.1.0.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: js.adsrvr.org +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://insight.adsrvr.org/track/up/?adv=z4iwyf7&ref=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&upid=rsfvgcn&upv=1.1.0 +[19256:Main Thread]: I/nsHttp Cookie: TDID=8e17a054-a89c-45ba-adcb-0da5e7fffa00; TDCPM=CAESFAoFdGFwYWQSCwjSy5Gi9LGLOBAFEhUKBmdvb2dsZRILCNyN0c_1q4s4EAUSGQoKcmlnaHRtZWRpYRILCOTf66yMrIs4EAUSFwoIYXBwbmV4dXMSCwiI2_XEjKyLOBAFEhYKB2FkZHRoaXMSCwiix9bsnKyLOBAFEhYKB2JsdWVrYWkSCwiOkIbvnKyLOBAFGAUoAzILCOzC8qT-3Is4EAVCDyINCAESCQoFdGllcjMQAVIVCgZnb29nbGUSCwiEh5TC9auLOBAFUhYKB3J1Ymljb24SCwiEh5TC9auLOBAFUhcKCGFwcG5leHVzEgsI1vHGmYysizgQBVIZCgpyaWdodG1lZGlhEgsI1vHGmYysizgQBVIVCgZhZGFwdHYSCwim7pLC9auLOBAFUhgKCWFvbGFkdGVjaBILCO6Q9bbUvYs4EAVSFQoGY2FzYWxlEgsI7pD1ttS9izgQBVIXCghwdWJtYXRpYxILCO6Q9bbUvYs4EAVSGAoJYmlkc3dpdGNoEgsI1vHGmYysizgQBVoHejRpd3lmN2AB +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: g3nQHoJ4LiqGbuTCHYxBOKBPFWRlGTcro0n0zDOa63jb9Q6YBS6lEg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: g3nQHoJ4LiqGbuTCHYxBOKBPFWRlGTcro0n0zDOa63jb9Q6YBS6lEg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 204 No Content +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: vkV4odfWot5Zmc73fGayE39Ewne5OlZ1LMWmzbaCuxSS7i9osS6JDg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/plain charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,ETP-Viewer-Country-Override +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 1728000 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: vkV4odfWot5Zmc73fGayE39Ewne5OlZ1LMWmzbaCuxSS7i9osS6JDg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 124 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ai0ZuvFGr-MPfEoWlBz6MAv3m1K3QZJmhm1SVU9BcxJKG36gH3RJmw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 124 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:44 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Ai0ZuvFGr-MPfEoWlBz6MAv3m1K3QZJmhm1SVU9BcxJKG36gH3RJmw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 162 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: BvH0h3GlGhGTEZWIUUgfX-i3Qen9qx-3-lf0arf7KtOdSnI1uM3qqA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 162 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: BvH0h3GlGhGTEZWIUUgfX-i3Qen9qx-3-lf0arf7KtOdSnI1uM3qqA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/up_next?account_id=6182099&mode=episode&episode_id=GYW4NNEE6&version=v2 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:30 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 0BLZqJ9q603o_lPLPqCcglOigJvmbwHrcrGkqYdgyd7Mt_aCX_qNDg== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:30 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 0BLZqJ9q603o_lPLPqCcglOigJvmbwHrcrGkqYdgyd7Mt_aCX_qNDg== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/x-javascript +[19256:Socket Thread]: I/nsHttp Content-Length: 487 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Last-Modified: Tue, 19 Nov 2019 21:15:08 GMT +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Server: AmazonS3 +[19256:Socket Thread]: I/nsHttp Date: Sat, 11 Jan 2020 16:48:05 GMT +[19256:Socket Thread]: I/nsHttp ETag: "f0a7a3296da7382ce6bc1a3b6769e927" +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: HEzRZUEEONN_k8lygdQQEC4lhKLAvuiNkUwIok-bi8WbrETvulYrbQ== +[19256:Socket Thread]: I/nsHttp Age: 124086 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/x-javascript +[19256:Socket Thread]: I/nsHttp Content-Length: 487 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Last-Modified: Tue, 19 Nov 2019 21:15:08 GMT +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Server: AmazonS3 +[19256:Socket Thread]: I/nsHttp Date: Sat, 11 Jan 2020 16:48:05 GMT +[19256:Socket Thread]: I/nsHttp ETag: "f0a7a3296da7382ce6bc1a3b6769e927" +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: HEzRZUEEONN_k8lygdQQEC4lhKLAvuiNkUwIok-bi8WbrETvulYrbQ== +[19256:Socket Thread]: I/nsHttp Age: 124086 +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/free_trial_eligibility?product_id=30 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/seasons?series_id=G6QW774G6&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/series/G6QW774G6?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/videos/GYG5MMG5Y/streams?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/playheads?content_ids=GYW4NNEE6&version=v2&mode=content HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************ +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: XMO1Pzc83xfduPQZkMmH1JcF8tpfWWO1epP7zxffozgFksHQAIBksQ== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: XMO1Pzc83xfduPQZkMmH1JcF8tpfWWO1epP7zxffozgFksHQAIBksQ== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 6hOTd5YYcLxuRtfiaOFeTWsOMoc7TnWQF7mv7mtA45E1pNhgccTxyA== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 b6cc1359c0cd55a8339441d8abb6a450.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: 6hOTd5YYcLxuRtfiaOFeTWsOMoc7TnWQF7mv7mtA45E1pNhgccTxyA== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:30 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: iLOk9KQm3NqgFnOY-JoOMgiAf6d1MKw9xDWxpgy4JjDuHuCe0Iid9w== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:30 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: iLOk9KQm3NqgFnOY-JoOMgiAf6d1MKw9xDWxpgy4JjDuHuCe0Iid9w== +[19256:Socket Thread]: I/nsHttp Age: 195 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 978 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Uh_7NtnTw0jHqqPHEhbKQAE893JTR7L9h62bIZieVTdUQ0pJwBsh8g== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 978 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Uh_7NtnTw0jHqqPHEhbKQAE893JTR7L9h62bIZieVTdUQ0pJwBsh8g== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 317 flags 4 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x5D priorityLen=0 stream=2F528230 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x5D fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2F528230 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:39 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: j8kpD_tvVJS2-Sn1nXMQml0htcG_GJ1b9NllhtaHdVKh8Nx3dAUb9w== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:39 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: j8kpD_tvVJS2-Sn1nXMQml0htcG_GJ1b9NllhtaHdVKh8Nx3dAUb9w== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10994718 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=24576 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10986526 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=24576 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16752 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16728 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32424 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10978334 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32424 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=24232 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10970142 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=24232 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16426 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/episodes?season_id=G65PMMV06&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /cms/v2/US/M3/boomerang,cartoonhangover,crunchyroll,fandor,hidive,mondo,nicksplat,roosterteeth,tested,vrvselect/seasons/G65PMMV06/extra_videos?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6XC9cL2FwaS52cnYuY29cL2Ntc1wvdj9cL1VTXC9NM1wvYm9vbWVyYW5nLGNhcnRvb25oYW5nb3ZlcixjcnVuY2h5cm9sbCxmYW5kb3IsaGlkaXZlLG1vbmRvLG5pY2tzcGxhdCxyb29zdGVydGVldGgsdGVzdGVkLHZydnNlbGVjdFwvKiIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTU3ODg1MjIyMH19fV19&Signature=XzzqTI36IiCGl33Xs9pq2cX7ERXd3UIsef43mvOKGYUtF76OySgpaviLD~sJTPQGelbqYELIGTQ1XctgvBn6ZKSuJ2o4xzrUQaJS4ddqxYNNvAwJLymwTI6bVxl8w76qRRtTizRNuEWApRFKoHeKVyuYVpLa8Fm3EJmg-O1bPRZ55bqeqm2b~nPC7xOukNUpQjl3brP5IiV6JNPgTOmr8jAE276mI~Ifw6hqHXoPKF7qz~r12Ij3zqCyvRsucP42Mb5F-y20li7P4i827epek8w1MaS0n3apKpabaogM36Zc1qC9hgC6Feefjck~JOMsM2EpwtH6vkqY4TWOehZQyw__&Key-Pair-Id=APKAJMWSQ5S7ZB3MF5VA HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32768 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32406 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10961950 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32406 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=24214 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10953758 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=24214 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16426 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16402 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16022 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10945566 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=16022 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=7830 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7308 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=7308 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=7308 unacked=64652 localWindow=12518260 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7308 localWindow=10938258 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=7830 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=522 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=8192 unacked=72844 localWindow=12510068 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10930066 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=522 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=32246 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=24576 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6892 flags 0 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=0 Len=6892 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5D newbytes=6892 unacked=79736 localWindow=12503176 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6892 localWindow=10923174 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=25098 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=18206 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5D Stream Ptr 2F528230 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528230 count=18206 state=4 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2F528230 0x5D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x5d +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x5D concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=2F528230 0x5D cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2F528230 0x5D 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2F528230 0x5d 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x5D concurrent=1 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2F528230 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 319 flags 4 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x5B priorityLen=0 stream=2F528120 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x5B fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2F528120 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=32768 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 09 Jan 2020 21:38:54 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: RNhTQy48scS2bB_h_rz16ZJcZwNBxyzkCP3IXXwDwlJ_Zt-d-J8-SA== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 09 Jan 2020 21:38:54 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: RNhTQy48scS2bB_h_rz16ZJcZwNBxyzkCP3IXXwDwlJ_Zt-d-J8-SA== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7354 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=7354 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=7354 unacked=7354 localWindow=12575558 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7354 localWindow=10915820 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=32768 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25414 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=8192 unacked=15546 localWindow=12567366 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10907628 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25414 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=17222 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=8192 unacked=23738 localWindow=12559174 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10899436 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=17222 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9072 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9072 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9048 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9030 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=8192 unacked=31930 localWindow=12550982 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10891244 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9030 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=838 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=8192 unacked=40122 localWindow=12542790 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10883052 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=838 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=31930 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=24636 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=24612 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25450 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25414 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=8192 unacked=48314 localWindow=12534598 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10874860 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=25414 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=17222 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=8192 unacked=56506 localWindow=12526406 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10866668 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=17222 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9108 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9084 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9084 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9084 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9084 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9084 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9084 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9030 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=8192 unacked=64698 localWindow=12518214 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10858476 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=9030 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=838 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 725 flags 0 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=0 Len=725 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5B newbytes=725 unacked=65423 localWindow=12517489 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=725 localWindow=10857751 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=838 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=113 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5B Stream Ptr 2F528120 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528120 count=113 state=4 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2F528120 0x5B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x5b +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x5B concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=2F528120 0x5B cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2F528120 0x5B 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2F528120 0x5b 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x5B concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2F528120 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: A33GObtIirdBQyxZcG519nIcLRGt3g1zqFA3Ks9lTw_FBFohhs5-hg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 a751121faec5553b68a53cf4d4b7e9a7.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: A33GObtIirdBQyxZcG519nIcLRGt3g1zqFA3Ks9lTw_FBFohhs5-hg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: zRTFpZrVoo-ASNzmZ9xHQN8bsKdbHZ0baLIRMuT0vaf0OEbHmiJn3g== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: zRTFpZrVoo-ASNzmZ9xHQN8bsKdbHZ0baLIRMuT0vaf0OEbHmiJn3g== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 292 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: HbuBHacJEAQVAPSyb_IfCXAbc9TWDZ58cUKR8nNn379KO_KkAYMUgw== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 292 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=300 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:27 GMT +[19256:Socket Thread]: I/nsHttp Microcache: MISS +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: HbuBHacJEAQVAPSyb_IfCXAbc9TWDZ58cUKR8nNn379KO_KkAYMUgw== +[19256:Socket Thread]: I/nsHttp Age: 198 +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/up_next?account_id=6182099&mode=episode&episode_id=GYW4NNEE6&version=v2 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /talkbox/guestbooks?guestbook_keys=GYW4NNEE6,GRW4NNE8Y,GY1X119GY,GR79335K6,G6XJKK0ER,GYQW7742Y,GYJ0PG186,GY4PK5MJ6,GRZJE7XG6,G63K077M6,G6MEJDD8R,GRW4W0E2Y HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /core/accounts/6182099/playheads?content_ids=GYW4NNEE6,GRW4NNE8Y,GY1X119GY,GR79335K6,G6XJKK0ER,GYQW7742Y,GYJ0PG186,GY4PK5MJ6,GRZJE7XG6,G63K077M6,G6MEJDD8R,GRW4W0E2Y&version=v2&mode=content HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: application/json, text/plain, */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Authorization: OAuth ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************** +[19256:Main Thread]: I/nsHttp Referer: https://vrv.co/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Main Thread]: I/nsHttp Origin: https://vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: 5fd74.v.fwmrm.net +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: _uid="a153_6744423171094859084"; _sc="sg171815.1578752609.1578784249.28800.6.36%2Csg568436.1578761720.1578784249.28800.0.0%2Csg568449.1578768163.1578784249.28800.0.0%2Csg696385.1578754676.1578784249.28800.254.130%2C"; _wr="g696385"; _auv="g171815%7E1.1578752648.6%2C21262.1578752648.6%2C%5Eg568436%7E5.1578761721.0%2C49160.1578761721.0%2C%5Eg568449%7E1.1578780094.0%2C49156.1578780094.0%2C%5Eg696385%7E1.1578784219.30%2C21262.1578784219.30%2C%5E"; _stid="151933.0.0%2C"; _cph="1578780090.12553.1.1%2C1578784210.16108.1.1%2C"; _vr="1578784210.2150.23668444%7E23668445%7E35046487%7E37382534%7E37383443%7E37383444%7E37416065%7E37418838%7E37420668%7E37421496%7E37422788%7E37855319%7E37976745%7E37976747%7E38154964%7E38173087%7E%2C1578781482.915.23668444%7E23668445%7E35046487%7E37383101%7E37383444%7E37416064%7E37416065%7E37418838%7E37420668%7E37422788%7E37855319%7E37976745%7E37976747%7E38033780%7E38097154%7E38154964%7E38173087%7E%2C1578781337.947.23668444%7E23668445%7E35046487%7E37382534%7E37383101%7E37383444%7E37416064%7E37418838%7E37420668%7E37421496%7E37422788%7E37855319%7E37976745%7E37976747%7E38097154%7E38173087%7E%2C1578780090.7966.17691639%7E17691640%7E32452201%7E32452217%7E32452249%7E32589455%7E33379947%7E34317341%7E35511358%7E35511359%7E38009871%7E38009872%7E%2C1578779757.7560.17691639%7E17691640%7E32452200%7E32452217%7E32452250%7E32589455%7E33379947%7E34317341%7E35511358%7E35511359%7E38009871%7E38009872%7E%2C1578778947.3411.23668444%7E23668445%7E35046487%7E37382534%7E37383101%7E37383444%7E37416064%7E37416065%7E37418838%7E37421496%7E37422788%7E37855319%7E37976745%7E37976747%7E38033780%7E%2C1578778024.8651.23668444%7E23668445%7E35046487%7E37383100%7E37383101%7E37383444%7E37416065%7E37420668%7E37422788%7E37855319%7E37976745%7E37976747%7E38033780%7E38097154%7E38154964%7E38173087%7E%2C" +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /favicon.ico HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: spotxchange.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: audience=1e6bc3bf-0977-11ea-841d-130dfa941906 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /favicon.ico HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: doubleclick.net +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: IDE=AHWqTUm_ra5EE5S5tgnkq7w_dhAmjjNaFGNj94I73BfPNjnq1IwSuSqd1g79S9_I +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /favicon.ico HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: segment.io +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 172 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: GoUAz7ljLTwNS7WGH-Gd8d4sY7RaJOcZubjPX6RABiUqFe4FyPfmRg== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 172 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 7a9ee72a0b48ca2cabd7b6a48922db46.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: GoUAz7ljLTwNS7WGH-Gd8d4sY7RaJOcZubjPX6RABiUqFe4FyPfmRg== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 978 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Xj34Xr7mO8K3cNTcqoKUq_dvztlpFevwaURXjOFIeJhVfFtuNhwprA== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 978 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: Xj34Xr7mO8K3cNTcqoKUq_dvztlpFevwaURXjOFIeJhVfFtuNhwprA== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F5285F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vrvweb/build/vilos.4fdf564ac240aebad155.css HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/css,*/*;q=0.1 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp POST /drm/v1/auth HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp content-type: text/plain +[19256:Main Thread]: I/nsHttp origin: https://static.vrv.co +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2F528AB0 +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/no-referrer +[19256:Main Thread]: I/nsHttp Content-Length: 139 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2F528AB0 serial=1 NextID=0x5F (tentative) +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528AB0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528AB0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2F528AB0 count=562 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2F528AB0 avail=562 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vrvweb/build/vilos.4fdf564ac240aebad155.css requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2F528AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2F528AB0 Currently 1 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2F528AB0 id=0x5F concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528AB0 Stream ID 0x5F [session=25499800] for URI /vrvweb/build/vilos.4fdf564ac240aebad155.css +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528AB0 depends on background group for trans 312BB800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528AB0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528AB0 Generating 77 bytes of HEADERS for stream 0x5F with priority weight 20 dep 0x7 frames 1 uri=/vrvweb/build/vilos.4fdf564ac240aebad155.css +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2F528AB0 used 562 of 562. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2F528AB0 0x5F 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2F528AB0 inline=90 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2F528AB0 result 0 len=90 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=90 rv=0 actual=90 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528AB0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528AB0 trans readsegments rv 0 read=562 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528AB0 countread=562 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528AB0 0x5F block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528AB0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528AB0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528AB0 0x5F: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528AB0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528AB0 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /imgsrv/display/thumbnail/1200x675/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /analytics.js/v1/SIeNJozAqhQxDdHOOY6mvnSKKzHo1BvJ/analytics.min.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: sa.etp-prod.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2F528DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=2F528DE0 serial=1 NextID=0x61 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528DE0 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528DE0 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2F528DE0 count=588 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2F528DE0 avail=588 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/imgsrv/display/thumbnail/1200x675/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=2F528DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 2F528DE0 Currently 2 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=2F528DE0 id=0x61 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528DE0 Stream ID 0x61 [session=25499800] for URI /imgsrv/display/thumbnail/1200x675/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528DE0 depends on background group for trans 312BCC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528DE0 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528DE0 Generating 106 bytes of HEADERS for stream 0x61 with priority weight 20 dep 0x7 frames 1 uri=/imgsrv/display/thumbnail/1200x675/catalog/mondo/5615a2129f626404b5596b9170b6bb2f.jpg +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2F528DE0 used 588 of 588. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2F528DE0 0x61 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2F528DE0 inline=119 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=2F528DE0 result 0 len=119 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=119 rv=0 actual=119 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528DE0 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528DE0 trans readsegments rv 0 read=588 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528DE0 countread=588 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 2F528DE0 0x61 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528DE0 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528DE0 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528DE0 0x61: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528DE0 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=2F528DE0 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F5284E0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: -3v8Z7hWU56SqlTT5_knZb9b4CnpA_-8NrZYPMpghFP92_q4pKYxaw== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 199 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 fb7a91e6436d6c6ab7f46f75c256840c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: -3v8Z7hWU56SqlTT5_knZb9b4CnpA_-8NrZYPMpghFP92_q4pKYxaw== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F528700 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /gts1o1 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.pki.goog +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 315 flags 4 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x61 priorityLen=0 stream=2F528DE0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x61 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2F528DE0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=32768 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 62477 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 03:56:38 GMT +[19256:Socket Thread]: I/nsHttp etag: 66dac6a998c91ea5ced58a81578160cb +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 29 Sep 2019 17:10:59 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: ujPkmpQZmu1hMiJKXGGIVQFzK4fQWWXasHhbZCtcTgvqwMf2ekgIpw== +[19256:Socket Thread]: I/nsHttp age: 3544 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 62477 +[19256:Socket Thread]: I/nsHttp cache-control: max-age=84600, public +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 03:56:38 GMT +[19256:Socket Thread]: I/nsHttp etag: 66dac6a998c91ea5ced58a81578160cb +[19256:Socket Thread]: I/nsHttp last-modified: Sun, 29 Sep 2019 17:10:59 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: ujPkmpQZmu1hMiJKXGGIVQFzK4fQWWXasHhbZCtcTgvqwMf2ekgIpw== +[19256:Socket Thread]: I/nsHttp age: 3544 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10849559 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=32768 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=24576 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10841367 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=24576 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=16750 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=16726 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 342 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=8192 unacked=24234 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10833175 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=8192 unacked=24234 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10824983 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 7808 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 24 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F528D60 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 360 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=8192 unacked=24234 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10816791 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=8192 unacked=24234 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10808599 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 7790 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 24 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 378 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=8192 unacked=24234 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10800407 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 8192 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 5133 flags 0 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=0 Len=5133 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x61 newbytes=5133 unacked=21175 localWindow=12520435 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=5133 localWindow=10795274 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 0 5133 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x61 Stream Ptr 2F528DE0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2F528DE0 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x61 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x61 concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x61 needscleanup=2F528DE0. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x61 to stream 2F528DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2F528DE0 0x61 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x61 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F5282C0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: status.geotrust.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.digicert.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 348 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: tu6yLVg8Uqe0vU1zgMgdYoiTX6rHWuVxDaLqqAftA5FhYUxLJLbKTQ== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/json +[19256:Socket Thread]: I/nsHttp Content-Length: 348 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Credentials: true +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Headers: Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: DELETE, GET, OPTIONS, PATCH, POST +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: https://vrv.co +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache, private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: nginx +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 9e89086b4bc4697bea1e1dec6ddc5c5c.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: tu6yLVg8Uqe0vU1zgMgdYoiTX6rHWuVxDaLqqAftA5FhYUxLJLbKTQ== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=86400 +[19256:Socket Thread]: I/nsHttp Server: ocsp_responder +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp X-XSS-Protection: 0 +[19256:Socket Thread]: I/nsHttp X-Frame-Options: SAMEORIGIN +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=061CA1B0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 30C9A400 serial=0x16 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 30C9A400 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 30C9A400 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=30C9A400 trans=312B5000 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 2F528340 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=30C9A400 stream=2F528340 serial=22 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9A400 mConnection=2E199750 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9A400 sslsocketcontrol=2F5285F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9A400 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9A400 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 will write from Http2Stream 2F528340 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528340 ReadSegments reader=30C9A40C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 2F528340 count=378 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 2F528340 avail=378 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=30C9A400 key=https://doubleclick.net/[]/[http2.22]/favicon.ico requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 30C9A400 stream=2F528340 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 30C9A400 counting stream 2F528340 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=30C9A400 stream=2F528340 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528340 Stream ID 0xF [session=30C9A400] for URI /favicon.ico +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528340 depends on background group for trans 312B5000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 2F528340 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528340 Generating 221 bytes of HEADERS for stream 0xF with priority weight 10 dep 0x7 frames 1 uri=/favicon.ico +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 2F528340 used 378 of 378. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 2F528340 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 2F528340 inline=234 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9A400 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=30C9A400 stream=2F528340 result 0 len=234 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9A400 sz=234 rv=0 actual=234 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528340 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528340 trans readsegments rv 0 read=378 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9A400 stream=2F528340 countread=378 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 will write from Http2Stream 2F528340 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 2F528340 ReadSegments reader=30C9A40C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528340 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 2F528340 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 2F528340 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9A400 stream=2F528340 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 30C9A400 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 100 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 1048576 +[19256:Socket Thread]: I/nsHttp Settings ID 6, Value 16384 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9A400 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 30C9A400 len=983041 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 30C9A400 session window 65535 increased by 983041 now 1048576. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 could not identify a stream to write; suspending. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: ocsp.digicert.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=112468 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a2bb2-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 21:25:14 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 20:10:26 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=112468 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a2bb2-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 21:25:14 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 20:10:26 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 201 Created +[19256:Socket Thread]: I/nsHttp Content-Type: application/jose+json +[19256:Socket Thread]: I/nsHttp Content-Length: 954 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: * +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=0, max-age=0 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: CbKcvEkmCSUCYskQPCA3BXAQH5sNnVJeCoIeeU2zes6cByNBdrJV8A== +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: application/jose+json +[19256:Socket Thread]: I/nsHttp Content-Length: 954 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: * +[19256:Socket Thread]: I/nsHttp Cache-Control: s-maxage=0, max-age=0 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp X-Cache: Miss from cloudfront +[19256:Socket Thread]: I/nsHttp Via: 1.1 04c18d05821ac693fcd550ba5b66f60d.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: CbKcvEkmCSUCYskQPCA3BXAQH5sNnVJeCoIeeU2zes6cByNBdrJV8A== +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 30C9DC00 serial=0x17 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 30C9DC00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 30C9DC00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=30C9DC00 trans=312B5400 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 312F0010 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=30C9DC00 stream=312F0010 serial=23 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9DC00 mConnection=2E199AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9DC00 sslsocketcontrol=2F5282C0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9DC00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30C9DC00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 will write from Http2Stream 312F0010 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 312F0010 ReadSegments reader=30C9DC0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 312F0010 count=295 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 312F0010 avail=295 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=30C9DC00 key=https://segment.io/[]/[http2.23]/favicon.ico requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 30C9DC00 stream=312F0010 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 30C9DC00 counting stream 312F0010 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=30C9DC00 stream=312F0010 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 312F0010 Stream ID 0xF [session=30C9DC00] for URI /favicon.ico +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 312F0010 depends on background group for trans 312B5400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 312F0010 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 312F0010 Generating 160 bytes of HEADERS for stream 0xF with priority weight 10 dep 0x7 frames 1 uri=/favicon.ico +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 312F0010 used 295 of 295. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 312F0010 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 312F0010 inline=173 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9DC00 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=30C9DC00 stream=312F0010 result 0 len=173 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9DC00 sz=173 rv=0 actual=173 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 312F0010 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 312F0010 trans readsegments rv 0 read=295 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9DC00 stream=312F0010 countread=295 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 will write from Http2Stream 312F0010 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 312F0010 ReadSegments reader=30C9DC0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 312F0010 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 312F0010 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 312F0010 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9DC00 stream=312F0010 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 could not identify a stream to write; suspending. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /evs/f29fdbd1abd4e3584cb35eedd674ce00/assets/p/d1ce5dfc4755a965678bed6fb8ea68da_,26221685_720.mp4,21720173_720.mp4,26221685_1080.mp4,21720173_1080.mp4,26221685_480.mp4,21720173_480.mp4,26221685_360.mp4,21720173_360.mp4,.urlset/manifest.mpd?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cCo6Ly9kbC52LnZydi5jby9ldnMvZjI5ZmRiZDFhYmQ0ZTM1ODRjYjM1ZWVkZDY3NGNlMDAvYXNzZXRzL3AvZDFjZTVkZmM0NzU1YTk2NTY3OGJlZDZmYjhlYTY4ZGFfLDI2MjIxNjg1XzcyMC5tcDQsMjE3MjAxNzNfNzIwLm1wNCwyNjIyMTY4NV8xMDgwLm1wNCwyMTcyMDE3M18xMDgwLm1wNCwyNjIyMTY4NV80ODAubXA0LDIxNzIwMTczXzQ4MC5tcDQsMjYyMjE2ODVfMzYwLm1wNCwyMTcyMDE3M18zNjAubXA0LC51cmxzZXQvbWFuaWZlc3QubXBkIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNTc5MDEwODQ0fX19XX0_&Signature=SyvRovq112M1NH3lx0HGKwjX3qqcAse9whp850u5ymGBe2EXhUg0rXTaromwljRiIm-f-CcD78CQo02Z4JRr~jmhxiSW0VWf0h3U4gf7~upLybt2-rgeSxNt33RO46D7RumSRS8N9XGIeWFn-4NIN2erPlsJD0wwi66QtWVanQ1CYYrW6EKLIn8pLo4ahrM4uxk-ynmShMJ9D44W9vBh2aQUyoiiyg7~tWT6eHS6izJUn3YkLx6zT8Ew7DS0fvYf47F8dDdBK4NXTXiEPgKcJXlqCimmMZgloM4kZYU9f17xIKev628miwhq5D1vPpP9zHrTeCM1aB7uA9v16K3hAg__&Key-Pair-Id=DLVR HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: dl.v.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Origin: https://static.vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 30C9A400 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 1 data len 333 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 30C9A400 stream 0xF priorityLen=0 stream=2F528340 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 30C9A400 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2F528340 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-type: image/x-icon +[19256:Socket Thread]: I/nsHttp content-length: 1494 +[19256:Socket Thread]: I/nsHttp date: Tue, 07 Jan 2020 11:21:45 GMT +[19256:Socket Thread]: I/nsHttp expires: Wed, 15 Jan 2020 11:21:45 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 22 Oct 2019 18:30:00 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: sffe +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=691200 +[19256:Socket Thread]: I/nsHttp age: 442141 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-type: image/x-icon +[19256:Socket Thread]: I/nsHttp content-length: 1494 +[19256:Socket Thread]: I/nsHttp date: Tue, 07 Jan 2020 11:21:45 GMT +[19256:Socket Thread]: I/nsHttp expires: Wed, 15 Jan 2020 11:21:45 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 22 Oct 2019 18:30:00 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: sffe +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=691200 +[19256:Socket Thread]: I/nsHttp age: 442141 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 0 data len 1494 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=30C9A400 Stream ID 0xF Stream Ptr 2F528340 Fin=1 Len=1494 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=30C9A400 newbytes=1494 localWindow=12581418 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528340 count=31448 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528340 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 30C9A400 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=30C9A400 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 30C9A400 by ID 0xF to stream 2F528340 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 30C9A400 2F528340 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 30C9A400 2F528340 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 30C9A400 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2F528340 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 30C9A400 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 30C9A400 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9A400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=112468 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a2bb2-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 21:25:14 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 20:10:26 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=112468 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a2bb2-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 21:25:14 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 20:10:26 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D1E) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 277 flags 4 id 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x5F priorityLen=0 stream=2F528AB0 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x5F fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 2F528AB0 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528AB0 count=32768 state=4 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: text/css +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:59 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: wWvbtab0DQCxff5cEHoD-pM3E76oMqOvJ9UHNtcGO_qJoL7B5gZfGw== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: text/css +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 19 Dec 2019 16:18:59 GMT +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: wWvbtab0DQCxff5cEHoD-pM3E76oMqOvJ9UHNtcGO_qJoL7B5gZfGw== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 1342 flags 0 id 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5F Stream Ptr 2F528AB0 Fin=0 Len=1342 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x5F newbytes=1342 unacked=1342 localWindow=12581570 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=1342 localWindow=10793932 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528AB0 count=32768 state=4 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528AB0 count=31426 state=4 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x5F Stream Ptr 2F528AB0 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528AB0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528AB0 count=31426 state=4 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 2F528AB0 0x5F +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x5f +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x5F concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=2F528AB0 0x5F cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2F528AB0 0x5F 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2F528AB0 0x5f 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x5F concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2F528AB0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: text/html +[19256:Socket Thread]: I/nsHttp ETag: "1630226229" +[19256:Socket Thread]: I/nsHttp Last-Modified: Tue, 27 Jun 2017 17:12:40 GMT +[19256:Socket Thread]: I/nsHttp ntCoent-Length: 10 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: FWS +[19256:Socket Thread]: I/nsHttp P3P: policyref="https://www.freewheel.tv/w3c/p3p.xml",CP="ALL DSP COR NID" +[19256:Socket Thread]: I/nsHttp Cache-Control: private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Content-Length: 30 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/html +[19256:Socket Thread]: I/nsHttp ETag: "1630226229" +[19256:Socket Thread]: I/nsHttp Last-Modified: Tue, 27 Jun 2017 17:12:40 GMT +[19256:Socket Thread]: I/nsHttp ntCoent-Length: 10 +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp Server: FWS +[19256:Socket Thread]: I/nsHttp P3P: policyref="https://www.freewheel.tv/w3c/p3p.xml",CP="ALL DSP COR NID" +[19256:Socket Thread]: I/nsHttp Cache-Control: private +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp Content-Length: 30 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Content-Type: text/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 79122 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: * +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 3000 +[19256:Socket Thread]: I/nsHttp x-amz-replication-status: COMPLETED +[19256:Socket Thread]: I/nsHttp Last-Modified: Fri, 10 Jan 2020 17:24:04 GMT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp x-amz-version-id: rIM6kZvr1IrStmS.8YqYKE2HBxuV4426 +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Server: AmazonS3 +[19256:Socket Thread]: I/nsHttp Via: 1.1 814e6200dbb5865e94b7b0c1ba6129fe.cloudfront.net (CloudFront), 1.1 671b6837b1f5908956524bc8798dab1f.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Edge-O15-RID: T2LlM9Ide2YueDyyzwPcvyvRXwDJZV7mUtRZ4wz0nQewi_C4rBZLvg== +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:30 GMT +[19256:Socket Thread]: I/nsHttp ETag: "91ab3766a0a113979594a9a2fbc8c9d2" +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=300 +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: IAD89-C1, JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: WkergyjoRKQM3RWCGcWZ1S1cNJNI-rsBR93KzVp-pfCpHI8RufrzYg== +[19256:Socket Thread]: I/nsHttp Age: 196 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Content-Type: text/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp Content-Length: 79122 +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: * +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Methods: GET, HEAD +[19256:Socket Thread]: I/nsHttp Access-Control-Max-Age: 3000 +[19256:Socket Thread]: I/nsHttp x-amz-replication-status: COMPLETED +[19256:Socket Thread]: I/nsHttp Last-Modified: Fri, 10 Jan 2020 17:24:04 GMT +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp x-amz-version-id: rIM6kZvr1IrStmS.8YqYKE2HBxuV4426 +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Server: AmazonS3 +[19256:Socket Thread]: I/nsHttp Via: 1.1 814e6200dbb5865e94b7b0c1ba6129fe.cloudfront.net (CloudFront), 1.1 671b6837b1f5908956524bc8798dab1f.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: IAD89-C1 +[19256:Socket Thread]: I/nsHttp X-Edge-O15-RID: T2LlM9Ide2YueDyyzwPcvyvRXwDJZV7mUtRZ4wz0nQewi_C4rBZLvg== +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:07:30 GMT +[19256:Socket Thread]: I/nsHttp ETag: "91ab3766a0a113979594a9a2fbc8c9d2" +[19256:Socket Thread]: I/nsHttp Cache-Control: public, max-age=300 +[19256:Socket Thread]: I/nsHttp X-Cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp X-Amz-Cf-Id: WkergyjoRKQM3RWCGcWZ1S1cNJNI-rsBR93KzVp-pfCpHI8RufrzYg== +[19256:Socket Thread]: I/nsHttp Age: 196 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=124540 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a55f9-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Tue, 14 Jan 2020 00:46:26 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 23:10:49 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D29) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=124540 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e1a55f9-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Tue, 14 Jan 2020 00:46:26 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 23:10:49 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D29) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 30C9DC00 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 128 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16777215 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9DC00 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 30C9DC00 len=2147418112 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 30C9DC00 session window 65535 increased by 2147418112 now 2147483647. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 30C9DC00 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 1 data len 79 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 30C9DC00 stream 0xF priorityLen=0 stream=312F0010 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 30C9DC00 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 312F0010 response code 301 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 312F0010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 312F0010 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 301 Moved Permanently +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp content-type: text/html +[19256:Socket Thread]: I/nsHttp content-length: 162 +[19256:Socket Thread]: I/nsHttp location: https://segment.com/favicon.ico +[19256:Socket Thread]: I/nsHttp server: nginx +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp content-type: text/html +[19256:Socket Thread]: I/nsHttp content-length: 162 +[19256:Socket Thread]: I/nsHttp location: https://segment.com/favicon.ico +[19256:Socket Thread]: I/nsHttp server: nginx +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 0 data len 162 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=30C9DC00 Stream ID 0xF Stream Ptr 312F0010 Fin=0 Len=162 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=30C9DC00 id=0xF newbytes=162 unacked=162 localWindow=12582750 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=30C9DC00 newbytes=162 localWindow=12582750 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 312F0010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 312F0010 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=30C9DC00 Stream ID 0xF Stream Ptr 312F0010 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 312F0010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 30C9DC00 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=30C9DC00 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 30C9DC00 by ID 0xF to stream 312F0010 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 30C9DC00 312F0010 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 30C9DC00 312F0010 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 30C9DC00 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 312F0010 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /favicon.ico HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: segment.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F5283D0 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.0 302 Found +[19256:Socket Thread]: I/nsHttp Location: https://www.spotx.tv/favicon.ico +[19256:Socket Thread]: I/nsHttp Server: BigIP +[19256:Socket Thread]: I/nsHttp Connection: Keep-Alive +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Location: https://www.spotx.tv/favicon.ico +[19256:Socket Thread]: I/nsHttp Server: BigIP +[19256:Socket Thread]: I/nsHttp Connection: Keep-Alive +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /favicon.ico HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.spotx.tv +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /v1/t HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.segment.io +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Content-Type: text/plain +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Content-Length: 1514 +[19256:Main Thread]: I/nsHttp Origin: https://static.vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST /v1/t HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: api.segment.io +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Content-Type: text/plain +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Content-Length: 1388 +[19256:Main Thread]: I/nsHttp Origin: https://static.vrv.co +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /uwt.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.ads-twitter.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A3800 stream=25D56120 serial=9 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 will write from Http2Stream 25D56120 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2B2A380C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56120 count=302 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56120 avail=302 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A3800 key=https://static.ads-twitter.com/[]/[http2.9]/uwt.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A3800 stream=25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A3800 counting stream 25D56120 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A3800 stream=25D56120 id=0x11 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Stream ID 0x11 [session=2B2A3800] for URI /uwt.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on background group for trans 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Generating 59 bytes of HEADERS for stream 0x11 with priority weight 20 dep 0x7 frames 1 uri=/uwt.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56120 used 302 of 302. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56120 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56120 inline=72 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A3800 stream=25D56120 result 0 len=72 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /en_US/fbevents.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: connect.facebook.net +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3800 sz=72 rv=0 actual=72 +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 0 to 1 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=302 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 stream=25D56120 countread=302 +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 will write from Http2Stream 25D56120 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2B2A380C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 1 to 4 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3800 stream=25D56120 stream send complete +[19256:Main Thread]: I/nsHttp GET /bat.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: bat.bing.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: MUID=28AB4EBA3736605C0C3F4091333663A0; MR=0; MUIDB=28AB4EBA3736605C0C3F4091333663A0 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A4C00 stream=25D56230 serial=13 NextID=0x13 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 25D56230 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 ReadSegments reader=2B2A4C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56230 count=311 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56230 avail=311 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A4C00 key=https://connect.facebook.net/[]/[http2.13]/en_US/fbevents.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A4C00 stream=25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A4C00 counting stream 25D56230 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A4C00 stream=25D56230 id=0x13 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 Stream ID 0x13 [session=2B2A4C00] for URI /en_US/fbevents.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56230 depends on background group for trans 2BCEB000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56230 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 Generating 67 bytes of HEADERS for stream 0x13 with priority weight 20 dep 0x7 frames 1 uri=/en_US/fbevents.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56230 used 311 of 311. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56230 0x13 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56230 inline=80 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A4C00 stream=25D56230 result 0 len=80 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=80 rv=0 actual=80 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56230 from 0 to 1 +[19256:Main Thread]: I/nsHttp GET /pagead/conversion_async.js HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 trans readsegments rv 0 read=311 +[19256:Main Thread]: I/nsHttp Host: www.googleadservices.com +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=25D56230 countread=311 +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 25D56230 0x13 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 ReadSegments reader=2B2A4C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 0x13: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56230 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=25D56230 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A3C00 stream=25D56450 serial=10 NextID=0x13 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 25D56450 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 ReadSegments reader=2B2A3C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56450 count=385 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56450 avail=385 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A3C00 key=https://bat.bing.com/[]/[http2.10]/bat.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A3C00 stream=25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A3C00 counting stream 25D56450 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A3C00 stream=25D56450 id=0x13 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 Stream ID 0x13 [session=2B2A3C00] for URI /bat.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56450 depends on background group for trans 2BCEBC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56450 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 Generating 68 bytes of HEADERS for stream 0x13 with priority weight 20 dep 0x7 frames 1 uri=/bat.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56450 used 385 of 385. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56450 0x13 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56450 inline=81 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A3C00 stream=25D56450 result 0 len=81 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=81 rv=0 actual=81 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 trans readsegments rv 0 read=385 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=25D56450 countread=385 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56340 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A0C00 stream=25D56340 serial=12 NextID=0x13 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 will write from Http2Stream 25D56340 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56340 ReadSegments reader=2B2A0C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56340 count=324 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56340 avail=324 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A0C00 key=https://www.googleadservices.com/[]/[http2.12]/pagead/conversion_async.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A0C00 stream=25D56340 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A0C00 counting stream 25D56340 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A0C00 stream=25D56340 id=0x13 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56340 Stream ID 0x13 [session=2B2A0C00] for URI /pagead/conversion_async.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56340 depends on background group for trans 2BCEDC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56340 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56340 Generating 72 bytes of HEADERS for stream 0x13 with priority weight 20 dep 0x7 frames 1 uri=/pagead/conversion_async.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56340 used 324 of 324. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56340 0x13 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56340 inline=85 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A0C00 stream=25D56340 result 0 len=85 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=85 rv=0 actual=85 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56340 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56340 trans readsegments rv 0 read=324 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 stream=25D56340 countread=324 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 will write from Http2Stream 25D56340 0x13 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56340 ReadSegments reader=2B2A0C0C count=32768 state=1 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56340 trans readsegments rv 0 read=0 +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56340 0x13: Sending request data complete, mUpstreamState=1 +[19256:Main Thread]: I/nsHttp Host: ocsp.comodoca.com +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56340 from 1 to 4 +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A0C00 stream=25D56340 stream send complete +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 25D56450 0x13 block-input=0 block-output=0 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 ReadSegments reader=2B2A3C0C count=32768 state=1 +[19256:Main Thread]: I/nsHttp Content-Length: 84 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 trans readsegments rv 0 read=0 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 0x13: Sending request data complete, mUpstreamState=1 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 1 to 4 +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=25D56450 stream send complete +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /analytics.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.google-analytics.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56670 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B29FC00 stream=25D56670 serial=11 NextID=0x13 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 25D56670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56670 ReadSegments reader=2B29FC0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56670 count=310 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56670 avail=310 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B29FC00 key=https://www.google-analytics.com/[]/[http2.11]/analytics.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B29FC00 stream=25D56670 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B29FC00 counting stream 25D56670 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B29FC00 stream=25D56670 id=0x13 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56670 Stream ID 0x13 [session=2B29FC00] for URI /analytics.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56670 depends on background group for trans 2E10F000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56670 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56670 Generating 63 bytes of HEADERS for stream 0x13 with priority weight 20 dep 0x7 frames 1 uri=/analytics.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56670 used 310 of 310. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56670 0x13 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56670 inline=76 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B29FC00 stream=25D56670 result 0 len=76 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=76 rv=0 actual=76 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56670 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56670 trans readsegments rv 0 read=310 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=25D56670 countread=310 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 25D56670 0x13 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56670 ReadSegments reader=2B29FC0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56670 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56670 0x13: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56670 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=25D56670 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F528B40 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=2F528A30 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 8 data len 4 flags 0 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 len=10420224 Stream 0x13. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 stream 0x13 window 65536 increased by 10420224 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 1 data len 129 flags 4 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A4C00 stream 0x13 priorityLen=0 stream=25D56230 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A4C00 for 0x13 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56230 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: cQpm5NJrDpglCKdOGQfN3LZ0Gln2aTvvtFxS/t454oxOwq+lxULEyHYH3qIuUBrjYIEKTejYhmdrBN+4TYJskw== +[19256:Socket Thread]: I/nsHttp content-length: 30426 +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: cQpm5NJrDpglCKdOGQfN3LZ0Gln2aTvvtFxS/t454oxOwq+lxULEyHYH3qIuUBrjYIEKTejYhmdrBN+4TYJskw== +[19256:Socket Thread]: I/nsHttp content-length: 30426 +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 BUFFERING FRAME HEADER incomplete size=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x13 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x13 newbytes=16384 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12421185 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31276 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 1 data len 72 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A3800 stream 0x11 priorityLen=0 stream=25D56120 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A3800 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56120 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 23 Jan 2018 19:05:33 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache +[19256:Socket Thread]: I/nsHttp content-type: application/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp etag: "b7b33882a4f3ffd5cbf07434f3137166+gzip" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp via: 1.1 varnish +[19256:Socket Thread]: I/nsHttp age: 82047 +[19256:Socket Thread]: I/nsHttp x-served-by: cache-lga21946-LGA +[19256:Socket Thread]: I/nsHttp x-cache: HIT +[19256:Socket Thread]: I/nsHttp x-timer: S1578838247.528543,VS0,VE0 +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding,Host +[19256:Socket Thread]: I/nsHttp p3p: CP="CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT" +[19256:Socket Thread]: I/nsHttp content-length: 1954 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 23 Jan 2018 19:05:33 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache +[19256:Socket Thread]: I/nsHttp content-type: application/javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp etag: "b7b33882a4f3ffd5cbf07434f3137166+gzip" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp via: 1.1 varnish +[19256:Socket Thread]: I/nsHttp age: 82047 +[19256:Socket Thread]: I/nsHttp x-served-by: cache-lga21946-LGA +[19256:Socket Thread]: I/nsHttp x-cache: HIT +[19256:Socket Thread]: I/nsHttp x-timer: S1578838247.528543,VS0,VE0 +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding,Host +[19256:Socket Thread]: I/nsHttp p3p: CP="CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT" +[19256:Socket Thread]: I/nsHttp content-length: 1954 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 0 data len 1954 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3800 Stream ID 0x11 Stream Ptr 25D56120 Fin=1 Len=1954 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A3800 newbytes=1954 localWindow=12579004 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=31529 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3800 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A3800 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3800 by ID 0x11 to stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3800 25D56120 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A3800 25D56120 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3800 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=17876 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 14042 flags 1 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x13 Stream Ptr 25D56230 Fin=1 Len=14042 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=14042 localWindow=12407143 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 0 1491 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 1 data len 45 flags 4 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B29FC00 stream 0x13 priorityLen=0 stream=25D56670 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B29FC00 for 0x13 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56670 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=10886400; includeSubDomains; preload +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:27:56 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 15:27:56 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 19 Aug 2019 17:22:41 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: Golfe2 +[19256:Socket Thread]: I/nsHttp content-length: 17803 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=7200 +[19256:Socket Thread]: I/nsHttp age: 2570 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=10886400; includeSubDomains; preload +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:27:56 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 15:27:56 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Mon, 19 Aug 2019 17:22:41 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: Golfe2 +[19256:Socket Thread]: I/nsHttp content-length: 17803 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=7200 +[19256:Socket Thread]: I/nsHttp age: 2570 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 0 data len 16384 flags 0 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B29FC00 Stream ID 0x13 Stream Ptr 25D56670 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B29FC00 id=0x13 newbytes=16384 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B29FC00 newbytes=16384 localWindow=12547866 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31448 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 0 11151 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 0 1400 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 2B2A4C00 - recorded downstream fin of stream 25D56230 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x13 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0x13 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A4C00 id 0x13 needscleanup=25D56230. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 by ID 0x13 to stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 25D56230 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x13 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 1 data len 104 flags 4 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A3C00 stream 0x13 priorityLen=0 stream=25D56450 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A3C00 for 0x13 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56450 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: private,max-age=1800 +[19256:Socket Thread]: I/nsHttp content-length: 7148 +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 10 Sep 2019 18:57:28 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp etag: "09c5197968d51:0" +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: C6A13D56EDBB44C89EBFFFB504D51879 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:46Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: private,max-age=1800 +[19256:Socket Thread]: I/nsHttp content-length: 7148 +[19256:Socket Thread]: I/nsHttp content-type: application/javascript +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 10 Sep 2019 18:57:28 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp etag: "09c5197968d51:0" +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: C6A13D56EDBB44C89EBFFFB504D51879 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:46Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 823 flags 0 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0x13 Stream Ptr 25D56450 Fin=0 Len=823 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A3C00 id=0x13 newbytes=823 unacked=823 localWindow=12582089 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A3C00 newbytes=823 localWindow=12574941 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=31945 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 6325 flags 0 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0x13 Stream Ptr 25D56450 Fin=0 Len=6325 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A3C00 id=0x13 newbytes=6325 unacked=7148 localWindow=12575764 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A3C00 newbytes=6325 localWindow=12568616 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 0 flags 1 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0x13 Stream Ptr 25D56450 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x13 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0x13 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A3C00 id 0x13 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 by ID 0x13 to stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 25D56450 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A3C00 25D56450 0x13 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0x13 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=30110 state=4 0x13 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /action/0?ti=5476222&Ver=2&mid=d65698ad-f2bf-88e4-7f59-a04c2d4286b5&ea=track&el=Video%20Play%20Requested&el2=Video%20Play%20Requested&evt=custom&ifm=1&msclkid=N&rn=691498 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: bat.bing.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: MUID=28AB4EBA3736605C0C3F4091333663A0; MR=0; MUIDB=28AB4EBA3736605C0C3F4091333663A0 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A3C00 stream=25D56120 serial=10 NextID=0x15 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 25D56120 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2B2A3C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56120 count=548 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56120 avail=548 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A3C00 key=https://bat.bing.com/[]/[http2.10]/action/0?ti=5476222&Ver=2&mid=d65698ad-f2bf-88e4-7f59-a04c2d4286b5&ea=track&el=Video%20Play%20Requested&el2=Video%20Play%20Requested&evt=custom&ifm=1&msclkid=N&rn=691498 requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A3C00 stream=25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A3C00 counting stream 25D56120 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A3C00 stream=25D56120 id=0x15 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Stream ID 0x15 [session=2B2A3C00] for URI /action/0?ti=5476222&Ver=2&mid=d65698ad-f2bf-88e4-7f59-a04c2d4286b5&ea=track&el=Video%20Play%20Requested&el2=Video%20Play%20Requested&evt=custom&ifm=1&msclkid=N&rn=691498 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on background group for trans 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Generating 157 bytes of HEADERS for stream 0x15 with priority weight 10 dep 0x7 frames 1 uri=/action/0?ti=5476222&Ver=2&mid=d65698ad-f2bf-88e4-7f59-a04c2d4286b5&ea=track&el=Video%20Play%20Requested&el2=Video%20Play%20Requested&evt=custom&ifm=1&msclkid=N&rn=691498 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56120 used 548 of 548. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56120 0x15 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56120 inline=170 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A3C00 stream=25D56120 result 0 len=170 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=170 rv=0 actual=170 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=548 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=25D56120 countread=548 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 will write from Http2Stream 25D56120 0x15 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2B2A3C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 0x15: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A3C00 stream=25D56120 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 1 data len 66 flags 4 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A0C00 stream 0x13 priorityLen=0 stream=25D56340 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A0C00 for 0x13 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56340 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp cache-control: private, max-age=3600 +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp etag: 9891173648756672696 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 9881 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp p3p: policyref="https://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC" +[19256:Socket Thread]: I/nsHttp timing-allow-origin: * +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp cache-control: private, max-age=3600 +[19256:Socket Thread]: I/nsHttp content-type: text/javascript; charset=UTF-8 +[19256:Socket Thread]: I/nsHttp etag: 9891173648756672696 +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp content-disposition: attachment; filename="f.txt" +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp server: cafe +[19256:Socket Thread]: I/nsHttp content-length: 9881 +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp alt-svc: quic="googleads.g.doubleclick.net:443"; ma=2592000; v="46,43",quic=":443"; ma=2592000; v="46,43",h3-Q050="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q049="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043="googleads.g.doubleclick.net:443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 0 data len 10008 flags 8 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x13 mPaddingLength=126 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x13 ready to read HTTP data +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 3 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A0C00 Stream ID 0x13 Stream Ptr 25D56340 Fin=0 Len=10008 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A0C00 id=0x13 newbytes=10008 unacked=10008 localWindow=12572904 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A0C00 newbytes=10008 localWindow=12561614 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=31449 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=31439 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32323 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 0 data len 1419 flags 1 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B29FC00 Stream ID 0x13 Stream Ptr 25D56670 Fin=1 Len=1419 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B29FC00 newbytes=1419 localWindow=12546447 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 Buffered 0 875 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 Buffered 80470007 0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 data frame read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56340 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56340 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2B2A0C00 stream 0x13 len=10008 read=10008 crossed from HTTP data into padding (126 of 126) countWritten=714 +[19256:Socket Thread]: I/nsHttp Http2Session::OnWriteSegment 2B2A0C00 stream 0x13 new countWritten=588 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 0 data len 122 flags 9 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 3 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x13 mPaddingLength=121 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 stream 0x13 frame with only padding +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 3 to 5 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A0C00 Stream ID 0x13 Stream Ptr 25D56340 Fin=1 Len=122 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A0C00 newbytes=122 localWindow=12561492 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 trying to discard 121 bytes of padding +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 5 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x13 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A0C00 id=0x13 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A0C00 25D56340 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A0C00 25D56340 0x13 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A0C00 id=0x13 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56340 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A0C00 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A0C00 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 Buffered 0 544 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 2B29FC00 - recorded downstream fin of stream 25D56670 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x13 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0x13 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 Buffered 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B29FC00 id 0x13 needscleanup=25D56670. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 by ID 0x13 to stream 25D56670 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 25D56670 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 0x13 deferred +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B29FC00 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B29FC00 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 15:40:15 GMT +[19256:Socket Thread]: I/nsHttp Server: Apache +[19256:Socket Thread]: I/nsHttp ETag: AF09E8980C4088475EADAB9ACE37A94FE07E4211 +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=524334,s-maxage=1800,public,no-transform,must-revalidate +[19256:Socket Thread]: I/nsHttp X-OCSP-Responder-ID: scdpcaocsp6 +[19256:Socket Thread]: I/nsHttp X-HW: 1578838246.cds138.ny3.h2,1578838246.cds008.ny3.c +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 15:40:15 GMT +[19256:Socket Thread]: I/nsHttp Server: Apache +[19256:Socket Thread]: I/nsHttp ETag: AF09E8980C4088475EADAB9ACE37A94FE07E4211 +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=524334,s-maxage=1800,public,no-transform,must-revalidate +[19256:Socket Thread]: I/nsHttp X-OCSP-Responder-ID: scdpcaocsp6 +[19256:Socket Thread]: I/nsHttp X-HW: 1578838246.cds138.ny3.h2,1578838246.cds008.ny3.c +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp Content-Length: 472 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 5s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 0s +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp POST / HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: status.geotrust.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate +[19256:Main Thread]: I/nsHttp Content-Length: 83 +[19256:Main Thread]: I/nsHttp Content-Type: application/ocsp-request +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 1 data len 74 flags 4 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A3C00 stream 0x15 priorityLen=0 stream=25D56120 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A3C00 for 0x15 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56120 response code 204 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 204 No Content +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: 5DCD2025016542FBB6612C3EF2F27342 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:46Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate +[19256:Socket Thread]: I/nsHttp pragma: no-cache +[19256:Socket Thread]: I/nsHttp expires: Fri, 01 Jan 1990 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: * +[19256:Socket Thread]: I/nsHttp x-msedge-ref: Ref A: 5DCD2025016542FBB6612C3EF2F27342 Ref B: NYCEDGE1021 Ref C: 2020-01-12T14:10:46Z +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:45 GMT +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 0 data len 0 flags 1 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A3C00 Stream ID 0x15 Stream Ptr 25D56120 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x15 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0x15 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A3C00 id 0x15 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 by ID 0x15 to stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A3C00 25D56120 0x15 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A3C00 25D56120 0x15 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A3C00 id=0x15 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2BCEAC00 serial=0x18 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2BCEAC00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2BCEAC00 trans=30C9B400 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2BCEAC00 stream=25D56120 serial=24 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCEAC00 mConnection=2E197FC0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCEAC00 sslsocketcontrol=2F528A30 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCEAC00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2BCEAC00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 will write from Http2Stream 25D56120 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2BCEAC0C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56120 count=296 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56120 avail=296 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2BCEAC00 key=https://segment.com/[]/[http2.24]/favicon.ico requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2BCEAC00 stream=25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2BCEAC00 counting stream 25D56120 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2BCEAC00 stream=25D56120 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Stream ID 0xF [session=2BCEAC00] for URI /favicon.ico +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on background group for trans 30C9B400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Generating 161 bytes of HEADERS for stream 0xF with priority weight 10 dep 0x7 frames 1 uri=/favicon.ico +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56120 used 296 of 296. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56120 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56120 inline=174 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCEAC00 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2BCEAC00 stream=25D56120 result 0 len=174 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCEAC00 sz=174 rv=0 actual=174 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=296 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCEAC00 stream=25D56120 countread=296 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 will write from Http2Stream 25D56120 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2BCEAC0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCEAC00 stream=25D56120 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25D56810 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback sslsocketcontrol=25D56920 +[19256:Socket Thread]: I/nsHttp Http2Session::ALPNCallback version=304 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 trans=312BCC00 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 25499800 ID is 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 2B2A4C00 trans=2BCEB000 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 2B2A4C00 ID is 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B2A4C00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 2B29FC00 trans=2E10F000 +[19256:Socket Thread]: I/nsHttp Http2Session::TransactionHasDataToRecv 2B29FC00 ID is 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B29FC00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x61 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=32768 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2F528DE0 61 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x61 rv 0 32768 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x61 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 2F528DE0 count=32768 state=4 0x61 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 2F528DE0 61 13667 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x61 rv 0 13667 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 25499800 0x61 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 25499800 0x61 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 2F528DE0 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 25499800 0x61 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 2F528DE0 0x61 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 2F528DE0 0x61 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x61 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 2F528DE0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B2A4C00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 25D56230 13 14042 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B2A4C00 0x13 rv 0 14042 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B2A4C00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B2A4C00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B2A4C00 0x13 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 25D56230 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A4C00 25D56230 0x13 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0x13 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B29FC00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56670 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment read from flow control buffer 25D56670 13 1419 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B29FC00 0x13 rv 0 1419 +[19256:Socket Thread]: I/nsHttp Http2Session::ConnectSlowConsumer 2B29FC00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer 2B29FC00 0x13 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ProcessSlowConsumer Writesegments 2B29FC00 0x13 rv 80470002 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 25D56670 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B29FC00 25D56670 0x13 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0x13 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56670 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Content-Type: application/dash+xml +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp x-dlvr-mash-status: 200 +[19256:Socket Thread]: I/nsHttp x-dlvr-mash-is-mop: false +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache +[19256:Socket Thread]: I/nsHttp X-Cache: HIT from DLVR +[19256:Socket Thread]: I/nsHttp Via: 1.1 dlvr1.net +[19256:Socket Thread]: I/nsHttp Server: dlvr-arc/0.1.105 +[19256:Socket Thread]: I/nsHttp x-arc-id: lga1-29 +[19256:Socket Thread]: I/nsHttp x-dlvr-session: 540ccb0e-3545-11ea-aa3b-0bb49f97ba04 +[19256:Socket Thread]: I/nsHttp X-CDN: dlvr +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: * +[19256:Socket Thread]: I/nsHttp Access-Control-Expose-Headers: Content-Type +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Content-Type: application/dash+xml +[19256:Socket Thread]: I/nsHttp Transfer-Encoding: chunked +[19256:Socket Thread]: I/nsHttp Connection: keep-alive +[19256:Socket Thread]: I/nsHttp x-dlvr-mash-status: 200 +[19256:Socket Thread]: I/nsHttp x-dlvr-mash-is-mop: false +[19256:Socket Thread]: I/nsHttp Cache-Control: no-cache +[19256:Socket Thread]: I/nsHttp X-Cache: HIT from DLVR +[19256:Socket Thread]: I/nsHttp Via: 1.1 dlvr1.net +[19256:Socket Thread]: I/nsHttp Server: dlvr-arc/0.1.105 +[19256:Socket Thread]: I/nsHttp x-arc-id: lga1-29 +[19256:Socket Thread]: I/nsHttp x-dlvr-session: 540ccb0e-3545-11ea-aa3b-0bb49f97ba04 +[19256:Socket Thread]: I/nsHttp X-CDN: dlvr +[19256:Socket Thread]: I/nsHttp Access-Control-Allow-Origin: * +[19256:Socket Thread]: I/nsHttp Access-Control-Expose-Headers: Content-Type +[19256:Socket Thread]: I/nsHttp Content-Encoding: gzip +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=104921 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e19fcf6-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 19:19:27 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 16:51:02 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D29) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Accept-Ranges: bytes +[19256:Socket Thread]: I/nsHttp Cache-Control: max-age=104921 +[19256:Socket Thread]: I/nsHttp Content-Type: application/ocsp-response +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp Etag: "5e19fcf6-1d7" +[19256:Socket Thread]: I/nsHttp Expires: Mon, 13 Jan 2020 19:19:27 GMT +[19256:Socket Thread]: I/nsHttp Last-Modified: Sat, 11 Jan 2020 16:51:02 GMT +[19256:Socket Thread]: I/nsHttp Server: ECS (nyb/1D29) +[19256:Socket Thread]: I/nsHttp X-Cache: HIT +[19256:Socket Thread]: I/nsHttp Content-Length: 471 +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /plugins/ua/linkid.js HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.google-analytics.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56010 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /signals/config/455459264638154?v=2.9.15&r=stable HTTP/1.1 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B29FC00 stream=25D56010 serial=11 NextID=0x15 (tentative) +[19256:Main Thread]: I/nsHttp Host: connect.facebook.net +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 25D56010 0x0 block-input=0 block-output=0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 ReadSegments reader=2B29FC0C count=2048 state=0 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56010 count=318 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56010 avail=318 state=0 +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B29FC00 key=https://www.google-analytics.com/[]/[http2.11]/plugins/ua/linkid.js requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B29FC00 stream=25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B29FC00 counting stream 25D56010 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B29FC00 stream=25D56010 id=0x15 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 Stream ID 0x15 [session=2B29FC00] for URI /plugins/ua/linkid.js +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56010 depends on background group for trans 26204C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56010 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 Generating 40 bytes of HEADERS for stream 0x15 with priority weight 20 dep 0x7 frames 1 uri=/plugins/ua/linkid.js +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56010 used 318 of 318. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56010 0x15 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56010 inline=53 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B29FC00 stream=25D56010 result 0 len=53 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=53 rv=0 actual=53 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56010 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 trans readsegments rv 0 read=318 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=25D56010 countread=318 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 will write from Http2Stream 25D56010 0x15 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 ReadSegments reader=2B29FC0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 0x15: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56010 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B29FC00 stream=25D56010 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2B2A4C00 stream=25D56230 serial=13 NextID=0x15 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 25D56230 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 ReadSegments reader=2B2A4C0C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56230 count=342 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56230 avail=342 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2B2A4C00 key=https://connect.facebook.net/[]/[http2.13]/signals/config/455459264638154?v=2.9.15&r=stable requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2B2A4C00 stream=25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2B2A4C00 counting stream 25D56230 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2B2A4C00 stream=25D56230 id=0x15 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 Stream ID 0x15 [session=2B2A4C00] for URI /signals/config/455459264638154?v=2.9.15&r=stable +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56230 depends on background group for trans 26207C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56230 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 Generating 60 bytes of HEADERS for stream 0x15 with priority weight 20 dep 0x7 frames 1 uri=/signals/config/455459264638154?v=2.9.15&r=stable +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56230 used 342 of 342. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56230 0x15 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56230 inline=73 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2B2A4C00 stream=25D56230 result 0 len=73 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=73 rv=0 actual=73 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56230 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 trans readsegments rv 0 read=342 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=25D56230 countread=342 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 will write from Http2Stream 25D56230 0x15 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 ReadSegments reader=2B2A4C0C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 0x15: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56230 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2B2A4C00 stream=25D56230 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2BCEAC00 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 128 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16777215 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCEAC00 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2BCEAC00 len=2147418112 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2BCEAC00 session window 65535 increased by 2147418112 now 2147483647. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2BCEAC00 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 2E143000 serial=0x19 +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 2E143000 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 2E143000 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=2E143000 trans=28C5F800 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E143000 stream=25D56450 serial=25 NextID=0xF (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E143000 mConnection=2E19D6F0 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E143000 sslsocketcontrol=25D56810 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E143000 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 2E143000 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 will write from Http2Stream 25D56450 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 ReadSegments reader=2E14300C count=32768 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56450 count=1886 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56450 avail=1886 state=0 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E143000 stream=25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E143000 counting stream 25D56450 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E143000 stream=25D56450 id=0xF concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 Stream ID 0xF [session=2E143000] for URI /v1/t +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56450 depends on background group for trans 28C5F800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56450 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 Generating 195 bytes of HEADERS for stream 0xF with priority weight 20 dep 0x7 frames 1 uri=/v1/t +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56450 used 372 of 1886. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56450 0xF 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56450 inline=208 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=148 rv=0 actual=148 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E143000 stream=25D56450 result 0 len=208 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=208 rv=0 actual=208 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56450 count=1514 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream this=25D56450 id 0xF send calculation avail=1514 chunksize=16000 stream window=65535 session window=65535 max frame=16384 USING=1514 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 id 0xf request len remaining 1514, count avail 1514, chunk used 1514 +[19256:Socket Thread]: I/nsHttp Http2Stream::GenerateDataFrameHeader 25D56450 len=1514 last=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56450 inline=9 stream=1514 +[19256:Socket Thread]: I/nsHttp Coalesce Transmit +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E143000 stream=25D56450 result 0 len=1523 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=1523 rv=0 actual=1523 +[19256:Socket Thread]: I/nsHttp TransmitFrame() rv=0 returning 1514 data bytes. Header is 0 Body is 0. +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 trans readsegments rv 0 read=1886 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 stream=25D56450 countread=1886 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 will write from Http2Stream 25D56450 0xF block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 ReadSegments reader=2E14300C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 0xF: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 stream=25D56450 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::Http2Session 30CA5C00 serial=0x1A +[19256:Socket Thread]: I/nsHttp Http2Session::SendHello 30CA5C00 +[19256:Socket Thread]: I/nsHttp Session Window increase at start of session 30CA5C00 12517377 +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 generate Priority Frame 0x3 depends on 0x0 weight 200 for leader class +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 generate Priority Frame 0x5 depends on 0x0 weight 100 for other class +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 generate Priority Frame 0x7 depends on 0x0 weight 0 for background class +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 generate Priority Frame 0x9 depends on 0x7 weight 0 for speculative class +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 generate Priority Frame 0xB depends on 0x3 weight 0 for follower class +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 generate Priority Frame 0xD depends on 0x0 weight 240 for urgentStart class +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 30CA5C00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 30CA5C00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream first session=30CA5C00 trans=2B2AC000 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream 30CA5C00 atrans=2B2AC000 trans=2B2AC000 session unusable - resched. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30CA5C00 mConnection=2E19BD80 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30CA5C00 sslsocketcontrol=25D56920 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30CA5C00 version=303 +[19256:Socket Thread]: I/nsHttp Http2Session::ConfirmTLSProfile 30CA5C00 MAC Algortihm (aead==6) 6 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30CA5C00 sz=165 rv=0 actual=165 +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 ResumeRecv After early flush in ReadSegments +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30CA5C00 +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E143000 stream=25D56560 serial=25 NextID=0x11 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 will write from Http2Stream 25D56560 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 ReadSegments reader=2E14300C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56560 count=1760 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56560 avail=1760 state=0 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E143000 stream=25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E143000 counting stream 25D56560 Currently 2 streams in session, high water mark is 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E143000 stream=25D56560 id=0x11 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 Stream ID 0x11 [session=2E143000] for URI /v1/t +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56560 depends on background group for trans 2B2AC000 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56560 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 Generating 36 bytes of HEADERS for stream 0x11 with priority weight 20 dep 0x7 frames 1 uri=/v1/t +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56560 used 372 of 1760. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56560 0x11 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56560 inline=49 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E143000 stream=25D56560 result 0 len=49 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=49 rv=0 actual=49 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56560 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56560 count=1388 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream this=25D56560 id 0x11 send calculation avail=1388 chunksize=16000 stream window=65535 session window=64021 max frame=16384 USING=1388 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 id 0x11 request len remaining 1388, count avail 1388, chunk used 1388 +[19256:Socket Thread]: I/nsHttp Http2Stream::GenerateDataFrameHeader 25D56560 len=1388 last=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56560 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56560 inline=9 stream=1388 +[19256:Socket Thread]: I/nsHttp Coalesce Transmit +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E143000 stream=25D56560 result 0 len=1397 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=1397 rv=0 actual=1397 +[19256:Socket Thread]: I/nsHttp TransmitFrame() rv=0 returning 1388 data bytes. Header is 0 Body is 0. +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56560 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56560 trans readsegments rv 0 read=1760 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 stream=25D56560 countread=1760 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Session 30CA5C00 could not identify a stream to write; suspending. +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 will write from Http2Stream 25D56560 0x11 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 ReadSegments reader=2E14300C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56560 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56560 0x11: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56560 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E143000 stream=25D56560 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 1 data len 168 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2BCEAC00 stream 0xF priorityLen=0 stream=25D56120 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2BCEAC00 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56120 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp content-type: image/vnd.microsoft.icon +[19256:Socket Thread]: I/nsHttp content-length: 594 +[19256:Socket Thread]: I/nsHttp server: nginx +[19256:Socket Thread]: I/nsHttp x-powered-by: koa +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 10 Jan 2020 00:06:47 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=0 +[19256:Socket Thread]: I/nsHttp etag: W/"252-16f8cc659d8" +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp content-type: image/vnd.microsoft.icon +[19256:Socket Thread]: I/nsHttp content-length: 594 +[19256:Socket Thread]: I/nsHttp server: nginx +[19256:Socket Thread]: I/nsHttp x-powered-by: koa +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 10 Jan 2020 00:06:47 GMT +[19256:Socket Thread]: I/nsHttp cache-control: max-age=0 +[19256:Socket Thread]: I/nsHttp etag: W/"252-16f8cc659d8" +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 0 data len 594 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2BCEAC00 Stream ID 0xF Stream Ptr 25D56120 Fin=0 Len=594 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2BCEAC00 id=0xF newbytes=594 unacked=594 localWindow=12582318 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2BCEAC00 newbytes=594 localWindow=12582318 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2BCEAC00 Stream ID 0xF Stream Ptr 25D56120 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2BCEAC00 id=0xF concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2BCEAC00 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2BCEAC00 by ID 0xF to stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2BCEAC00 25D56120 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2BCEAC00 25D56120 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2BCEAC00 id=0xF concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 8 data len 4 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 len=10420224 Stream 0x15. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2B2A4C00 stream 0x15 window 65536 increased by 10420224 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 1 data len 46 flags 4 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B29FC00 stream 0x15 priorityLen=0 stream=25D56010 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B29FC00 for 0x15 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56010 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56010 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp content-length: 859 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:18:15 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:18:15 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 22 Oct 2019 18:15:00 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: sffe +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp age: 3151 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=3600 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-type: text/javascript +[19256:Socket Thread]: I/nsHttp content-length: 859 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 13:18:15 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:18:15 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 22 Oct 2019 18:15:00 GMT +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp server: sffe +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp age: 3151 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=3600 +[19256:Socket Thread]: I/nsHttp alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 0 data len 859 flags 1 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B29FC00 Stream ID 0x15 Stream Ptr 25D56010 Fin=1 Len=859 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B29FC00 newbytes=859 localWindow=12545588 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56010 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x15 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0x15 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B29FC00 id 0x15 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 by ID 0x15 to stream 25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B29FC00 25D56010 0x15 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B29FC00 25D56010 0x15 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B29FC00 id=0x15 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 6 data len 8 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B29FC00 PING Flags 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B29FC00 isAck=1 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 1 data len 106 flags 4 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2B2A4C00 stream 0x15 priorityLen=0 stream=25D56230 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2B2A4C00 for 0x15 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56230 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: +oKZ/IkKkdsoofdjHYLfa843TGP/i04P3+RF89ifoHUI9L+aZSipSAqS6hhoomqmSW/5KUxnAV5Zi3Uw6zOWiA== +[19256:Socket Thread]: I/nsHttp content-length: 114917 +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: application/x-javascript; charset=utf-8 +[19256:Socket Thread]: I/nsHttp cache-control: public, max-age=1200 +[19256:Socket Thread]: I/nsHttp expires: Sat, 01 Jan 2000 00:00:00 GMT +[19256:Socket Thread]: I/nsHttp pragma: public +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; preload; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-encoding: gzip +[19256:Socket Thread]: I/nsHttp content-security-policy: default-src * data: blob:;script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self'; +[19256:Socket Thread]: I/nsHttp vary: Accept-Encoding +[19256:Socket Thread]: I/nsHttp x-content-type-options: nosniff +[19256:Socket Thread]: I/nsHttp x-frame-options: DENY +[19256:Socket Thread]: I/nsHttp x-xss-protection: 0 +[19256:Socket Thread]: I/nsHttp x-fb-debug: +oKZ/IkKkdsoofdjHYLfa843TGP/i04P3+RF89ifoHUI9L+aZSipSAqS6hhoomqmSW/5KUxnAV5Zi3Uw6zOWiA== +[19256:Socket Thread]: I/nsHttp content-length: 114917 +[19256:Socket Thread]: I/nsHttp x-fb-trip-id: 2000377899 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:46 GMT +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 BUFFERING FRAME HEADER incomplete size=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x15 newbytes=16384 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12390759 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31276 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31276 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=17876 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x15 newbytes=16384 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12374375 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31277 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=17875 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x15 newbytes=16384 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12357991 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31277 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=17875 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x15 newbytes=16384 unacked=65536 localWindow=12517376 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12341607 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31277 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=17875 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x15 newbytes=16384 unacked=81920 localWindow=12500992 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12325223 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31277 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=17875 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x15 newbytes=16384 unacked=98304 localWindow=12484608 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12308839 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31277 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=17875 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 16384 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=0 Len=16384 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2B2A4C00 id=0x15 newbytes=16384 unacked=114688 localWindow=12468224 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=16384 localWindow=12292455 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31277 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=19037 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31606 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 0 data len 229 flags 1 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2B2A4C00 Stream ID 0x15 Stream Ptr 25D56230 Fin=1 Len=229 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2B2A4C00 newbytes=229 localWindow=12292226 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=31606 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x15 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0x15 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2B2A4C00 id 0x15 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 by ID 0x15 to stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2B2A4C00 25D56230 0x15 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2B2A4C00 25D56230 0x15 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2B2A4C00 id=0x15 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56230 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /tr/?id=455459264638154&ev=ViewContent&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838246215&cd[channelName]=mondo&cd[ConcatenatedTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile%7C1%7C&cd[duration]=666.167&cd[episodeNumber]=1&cd[episodeTitle]=&cd[externalMediaId]=&cd[extraTitle]=&cd[mediaAdSupported]=false&cd[mediaAudioLanguage]=en-US&cd[mediaDuration]=666.167&cd[mediaId]=GYW4NNEE6&cd[mediaSubtitleLanguage]=&cd[mediaTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile&cd[mediaType]=episode&cd[playbackSource]=network&cd[seasonTitle]=&cd[topLevelExternalMediaId]=&cd[topLevelMediaId]=G6QW774G6&cd[playheadTime]=0&cd[playType]=autoplay&cd[userId]=6182099&cd[timestamp]=1578838244990&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&eid=ajs-6ea78a08da85ca8acddf50631feed029&tm=1&rqm=GET HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.facebook.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: fr=0n8W9lfceXj8iBEXM.AWUsIk8ihWrQWtdRe71d5XzJQWM.BdmQEk.me.F4Z.0.0.BeGib_.AWVPPtzY; datr=2RizXQE4d6kfxC1WaecEWG8c; sb=3hizXanMHhMK632SxXXV0x-o +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E10C400 stream=25D56010 serial=20 NextID=0x13 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 25D56010 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 ReadSegments reader=2E10C40C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56010 count=1387 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56010 avail=1387 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2e10c400 key=https://www.facebook.com/[]/[http2.20]/tr/?id=455459264638154&ev=ViewContent&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838246215&cd[channelName]=mondo&cd[ConcatenatedTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile%7C1%7C&cd[duration]=666.167&cd[episodeNumber]=1&cd[episodeTitle]=&cd[externalMediaId]=&cd[extraTitle]=&cd[mediaAdSupported]=false&cd[mediaAudioLanguage]=en-US&cd[mediaDuration]=666.167&cd[mediaId]=GYW4NNEE6&cd[mediaSubtitleLanguage]=&cd[mediaTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile&cd[mediaType]=episode&cd[playbackSource]=network&cd[seasonTitle]=&cd[topLevelExternalMediaId]=&cd[topLevelMediaId]=G6QW774G6&cd[playheadTime]=0&cd[playType]=autoplay&cd[userId]=6182099&cd[timestamp]=1578838244990&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&eid=ajs-6ea78a08da85ca8acddf50631feed029&tm=1&rqm=GET requestcontext=25c0b820 cache=0 hit=0 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E10C400 stream=25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E10C400 counting stream 25D56010 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E10C400 stream=25D56010 id=0x13 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 Stream ID 0x13 [session=2E10C400] for URI /tr/?id=455459264638154&ev=ViewContent&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838246215&cd[channelName]=mondo&cd[ConcatenatedTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile%7C1%7C&cd[duration]=666.167&cd[episodeNumber]=1&cd[episodeTitle]=&cd[externalMediaId]=&cd[extraTitle]=&cd[mediaAdSupported]=false&cd[mediaAudioLanguage]=en-US&cd[mediaDuration]=666.167&cd[mediaId]=GYW4NNEE6&cd[mediaSubtitleLanguage]=&cd[mediaTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile&cd[mediaType]=episode&cd[playbackSource]=network&cd[seasonTitle]=&cd[topLevelExternalMediaId]=&cd[topLevelMediaId]=G6QW774G6&cd[playheadTime]=0&cd[playType]=autoplay&cd[userId]=6182099&cd[timestamp]=1578838244990&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&eid=ajs-6ea78a08da85ca8acddf50631feed029&tm=1&rqm=GET +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56010 depends on background group for trans 30CA7400 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56010 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25d56010 Generating 791 bytes of HEADERS for stream 0x13 with priority weight 10 dep 0x7 frames 1 uri=/tr/?id=455459264638154&ev=ViewContent&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838246215&cd[channelName]=mondo&cd[ConcatenatedTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile%7C1%7C&cd[duration]=666.167&cd[episodeNumber]=1&cd[episodeTitle]=&cd[externalMediaId]=&cd[extraTitle]=&cd[mediaAdSupported]=false&cd[mediaAudioLanguage]=en-US&cd[mediaDuration]=666.167&cd[mediaId]=GYW4NNEE6&cd[mediaSubtitleLanguage]=&cd[mediaTitle]=BIGFOOT%7CSeason%201%7CCommunity%20Profile&cd[mediaType]=episode&cd[playbackSource]=network&cd[seasonTitle]=&cd[topLevelExternalMediaId]=&cd[topLevelMediaId]=G6QW774G6&cd[playheadTime]=0&cd[playType]=autoplay&cd[userId]=6182099&cd[timestamp]=1578838244990&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=0&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&eid=ajs-6ea78a08da85ca8acddf50631feed029&tm=1&rqm=GET +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56010 used 1387 of 1387. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56010 0x13 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56010 inline=804 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E10C400 stream=25D56010 result 0 len=804 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=804 rv=0 actual=804 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56010 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 trans readsegments rv 0 read=1387 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=25D56010 countread=1387 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 25D56010 0x13 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 ReadSegments reader=2E10C40C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 0x13: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56010 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=25D56010 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 4 data len 18 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 0 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E143000 SETTINGS Control Frame with 3 entries ack=0 +[19256:Socket Thread]: I/nsHttp Settings ID 3, Value 128 +[19256:Socket Thread]: I/nsHttp Settings ID 4, Value 65536 +[19256:Socket Thread]: I/nsHttp Settings ID 5, Value 16777215 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateSettingsAck 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=9 rv=0 actual=9 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 8 data len 4 flags 0 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E143000 len=2147418112 Stream 0x0. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E143000 session window 62633 increased by 2147418112 now 2147480745. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 4 data len 0 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvSettings 2E143000 SETTINGS Control Frame with 0 entries ack=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 1 data len 91 flags 4 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E143000 stream 0xF priorityLen=0 stream=25D56450 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E143000 for 0xF fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56450 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp content-type: application/json +[19256:Socket Thread]: I/nsHttp content-length: 21 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://static.vrv.co +[19256:Socket Thread]: I/nsHttp vary: Origin +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp content-type: application/json +[19256:Socket Thread]: I/nsHttp content-length: 21 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://static.vrv.co +[19256:Socket Thread]: I/nsHttp vary: Origin +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 0 data len 21 flags 0 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E143000 Stream ID 0xF Stream Ptr 25D56450 Fin=0 Len=21 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2E143000 id=0xF newbytes=21 unacked=21 localWindow=12582891 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E143000 newbytes=21 localWindow=12582891 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=32768 state=4 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 0 data len 0 flags 1 id 0xF +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E143000 Stream ID 0xF Stream Ptr 25D56450 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0xf +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E143000 id=0xF concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E143000 id 0xF needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E143000 by ID 0xF to stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E143000 25D56450 0xF 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E143000 25D56450 0xf 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E143000 id=0xF concurrent=1 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30CA5C00 InternalState 0 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30CA5C00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 30CA5C00 mDownstreamState=0 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 1 data len 91 flags 4 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E143000 stream 0x11 priorityLen=0 stream=25D56560 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E143000 for 0x11 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56560 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp content-type: application/json +[19256:Socket Thread]: I/nsHttp content-length: 21 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://static.vrv.co +[19256:Socket Thread]: I/nsHttp vary: Origin +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp content-type: application/json +[19256:Socket Thread]: I/nsHttp content-length: 21 +[19256:Socket Thread]: I/nsHttp access-control-allow-origin: https://static.vrv.co +[19256:Socket Thread]: I/nsHttp vary: Origin +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 0 data len 21 flags 0 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E143000 Stream ID 0x11 Stream Ptr 25D56560 Fin=0 Len=21 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=2E143000 id=0x11 newbytes=21 unacked=21 localWindow=12582891 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E143000 newbytes=21 localWindow=12582870 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56560 count=32768 state=4 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 0 data len 0 flags 1 id 0x11 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E143000 Stream ID 0x11 Stream Ptr 25D56560 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x11 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E143000 id=0x11 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E143000 id 0x11 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E143000 by ID 0x11 to stream 25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E143000 25D56560 0x11 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E143000 25D56560 0x11 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E143000 id=0x11 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 8 data len 4 flags 0 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 len=10420224 Stream 0x13. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 stream 0x13 window 65536 increased by 10420224 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 1 data len 84 flags 4 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E10C400 stream 0x13 priorityLen=0 stream=25D56010 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E10C400 for 0x13 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56010 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56010 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 21 Dec 2012 00:00:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate, max-age=0 +[19256:Socket Thread]: I/nsHttp set-cookie: +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 44 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 21 Dec 2012 00:00:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate, max-age=0 +[19256:Socket Thread]: I/nsHttp set-cookie: +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 44 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 0 data len 44 flags 1 id 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E10C400 Stream ID 0x13 Stream Ptr 25D56010 Fin=1 Len=44 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E10C400 newbytes=44 localWindow=12582824 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56010 count=32768 state=4 0x13 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x13 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0x13 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E10C400 id 0x13 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 by ID 0x13 to stream 25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 25D56010 0x13 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E10C400 25D56010 0x13 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0x13 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56010 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/1.1 200 OK +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.0 +[19256:Socket Thread]: I/nsHttp X-Powered-By: PHP/7.4.0 +[19256:Socket Thread]: I/nsHttp X-Hostname: spotweb002.spotx.den01.pop +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Keep-Alive: timeout=5, max=100 +[19256:Socket Thread]: I/nsHttp Connection: Keep-Alive +[19256:Socket Thread]: I/nsHttp Content-Type: image/vnd.microsoft.icon +[19256:Socket Thread]: I/nsHttp Set-Cookie: BIGipServerspotx-spotweb-https=539666624.47873.0000; path=/; Httponly; Secure +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp Date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.0 +[19256:Socket Thread]: I/nsHttp X-Powered-By: PHP/7.4.0 +[19256:Socket Thread]: I/nsHttp X-Hostname: spotweb002.spotx.den01.pop +[19256:Socket Thread]: I/nsHttp Content-Length: 0 +[19256:Socket Thread]: I/nsHttp Keep-Alive: timeout=5, max=100 +[19256:Socket Thread]: I/nsHttp Connection: Keep-Alive +[19256:Socket Thread]: I/nsHttp Content-Type: image/vnd.microsoft.icon +[19256:Socket Thread]: I/nsHttp Set-Cookie: BIGipServerspotx-spotweb-https=539666624.47873.0000; path=/; Httponly; Secure +[19256:Socket Thread]: I/nsHttp ] +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vilos/manifest.appcache HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp X-Moz: offline-resource +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp If-Modified-Since: Thu, 09 Jan 2020 21:38:54 GMT +[19256:Main Thread]: I/nsHttp If-None-Match: "18512b3917c3518e29b5037afd158875" +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25D56010 serial=1 NextID=0x63 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56010 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56010 count=713 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56010 avail=713 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vilos/manifest.appcache requestcontext=00000000 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25D56010 Currently 1 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25D56010 id=0x63 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 Stream ID 0x63 [session=25499800] for URI /vilos/manifest.appcache +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56010 depends on stream 0xB +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 Generating 132 bytes of HEADERS for stream 0x63 with priority weight 21 dep 0xB frames 1 uri=/vilos/manifest.appcache +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56010 used 713 of 713. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56010 0x63 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56010 inline=145 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25D56010 result 0 len=145 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=145 rv=0 actual=145 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56010 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 trans readsegments rv 0 read=713 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56010 countread=713 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56010 0x63 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56010 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56010 0x63: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56010 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56010 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vilos/assets/binary3.jpg?cache_buster=1578838246449 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25D56120 serial=1 NextID=0x65 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56120 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56120 count=555 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56120 avail=555 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vilos/assets/binary3.jpg?cache_buster=1578838246449 requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25D56120 Currently 2 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25D56120 id=0x65 concurrent=2 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Stream ID 0x65 [session=25499800] for URI /vilos/assets/binary3.jpg?cache_buster=1578838246449 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on background group for trans 28C5F800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56120 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 Generating 83 bytes of HEADERS for stream 0x65 with priority weight 10 dep 0x7 frames 1 uri=/vilos/assets/binary3.jpg?cache_buster=1578838246449 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56120 used 555 of 555. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56120 0x65 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56120 inline=96 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25D56120 result 0 len=96 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=96 rv=0 actual=96 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56120 countread=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56120 0x65 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56120 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56120 0x65: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56120 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56120 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vilos/assets/binary1.jpg?cache_buster=1578838246449 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25D56230 serial=1 NextID=0x67 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56230 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56230 count=555 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56230 avail=555 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vilos/assets/binary1.jpg?cache_buster=1578838246449 requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25D56230 Currently 3 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25D56230 id=0x67 concurrent=3 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 Stream ID 0x67 [session=25499800] for URI /vilos/assets/binary1.jpg?cache_buster=1578838246449 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56230 depends on background group for trans 2B29E800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56230 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 Generating 83 bytes of HEADERS for stream 0x67 with priority weight 10 dep 0x7 frames 1 uri=/vilos/assets/binary1.jpg?cache_buster=1578838246449 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56230 used 555 of 555. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56230 0x67 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56230 inline=96 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25D56230 result 0 len=96 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=96 rv=0 actual=96 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56230 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 trans readsegments rv 0 read=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56230 countread=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56230 0x67 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56230 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56230 0x67: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56230 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56230 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vilos/assets/binary3.jpg?cache_buster=1578838246450 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25D56450 serial=1 NextID=0x69 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56450 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56450 count=555 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56450 avail=555 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vilos/assets/binary3.jpg?cache_buster=1578838246450 requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25D56450 Currently 4 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25D56450 id=0x69 concurrent=4 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 Stream ID 0x69 [session=25499800] for URI /vilos/assets/binary3.jpg?cache_buster=1578838246450 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56450 depends on background group for trans 2B2A5C00 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56450 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 Generating 83 bytes of HEADERS for stream 0x69 with priority weight 10 dep 0x7 frames 1 uri=/vilos/assets/binary3.jpg?cache_buster=1578838246450 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56450 used 555 of 555. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56450 0x69 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56450 inline=96 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25D56450 result 0 len=96 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=96 rv=0 actual=96 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 trans readsegments rv 0 read=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56450 countread=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56450 0x69 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56450 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56450 0x69: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56450 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56450 stream send complete +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /vilos/assets/binary1.jpg?cache_buster=1578838246450 HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: static.vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp JoinConnection 25499800 no origin frame check used. +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25D56560 serial=1 NextID=0x6B (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56560 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25D56560 count=555 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25D56560 avail=555 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://static.vrv.co/[]/[http2.1]/vilos/assets/binary1.jpg?cache_buster=1578838246450 requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25D56560 Currently 5 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25D56560 id=0x6B concurrent=5 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 Stream ID 0x6B [session=25499800] for URI /vilos/assets/binary1.jpg?cache_buster=1578838246450 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56560 depends on background group for trans 2B2A9800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25D56560 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 Generating 83 bytes of HEADERS for stream 0x6B with priority weight 10 dep 0x7 frames 1 uri=/vilos/assets/binary1.jpg?cache_buster=1578838246450 +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25D56560 used 555 of 555. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25D56560 0x6B 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25D56560 inline=96 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25D56560 result 0 len=96 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=96 rv=0 actual=96 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56560 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56560 trans readsegments rv 0 read=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56560 countread=555 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25D56560 0x6B block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25D56560 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56560 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25D56560 0x6B: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25D56560 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25D56560 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 331 flags 4 id 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x65 priorityLen=0 stream=25D56120 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x65 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56120 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=32768 state=4 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:21 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: AHYo5l8PIPDv2AlQSuDv4IXFAtnPtkp_HyVEbRsshE1o2qlRy7HgtQ== +[19256:Socket Thread]: I/nsHttp age: 27 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:21 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: AHYo5l8PIPDv2AlQSuDv4IXFAtnPtkp_HyVEbRsshE1o2qlRy7HgtQ== +[19256:Socket Thread]: I/nsHttp age: 27 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7240 flags 0 id 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x65 Stream Ptr 25D56120 Fin=0 Len=7240 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x65 newbytes=7240 unacked=7240 localWindow=12575672 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7240 localWindow=10786692 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=32768 state=4 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=25528 state=4 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 406 flags 0 id 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x65 Stream Ptr 25D56120 Fin=0 Len=406 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x65 newbytes=406 unacked=7646 localWindow=12575266 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=406 localWindow=10786286 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56120 count=25528 state=4 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x65 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x65 Stream Ptr 25D56120 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56120 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x65 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x65 concurrent=5 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x65 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x65 to stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25D56120 0x65 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25D56120 0x65 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x65 concurrent=4 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56120 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 333 flags 4 id 0x67 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x67 priorityLen=0 stream=25D56230 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x67 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56230 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x67 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:35 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: HBSpJTcSGIMXVRlSfbq_xJVmPV_BtowUbU0JcJWIIpPMXZIdJYHHtw== +[19256:Socket Thread]: I/nsHttp age: 13 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:35 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: HBSpJTcSGIMXVRlSfbq_xJVmPV_BtowUbU0JcJWIIpPMXZIdJYHHtw== +[19256:Socket Thread]: I/nsHttp age: 13 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7646 flags 0 id 0x67 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x67 Stream Ptr 25D56230 Fin=0 Len=7646 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x67 newbytes=7646 unacked=7646 localWindow=12575266 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7646 localWindow=10778640 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56230 count=32768 state=4 0x67 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x67 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x67 Stream Ptr 25D56230 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56230 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x67 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x67 concurrent=4 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x67 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x67 to stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25D56230 0x67 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25D56230 0x67 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x67 concurrent=3 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56230 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 324 flags 4 id 0x69 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x69 priorityLen=0 stream=25D56450 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x69 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56450 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=32768 state=4 0x69 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: pzR-ecamup4uEclBWOSXYUsBC9Xidrvao8THXVSqdJA0Z34Cc4G70A== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: pzR-ecamup4uEclBWOSXYUsBC9Xidrvao8THXVSqdJA0Z34Cc4G70A== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7646 flags 0 id 0x69 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x69 Stream Ptr 25D56450 Fin=0 Len=7646 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x69 newbytes=7646 unacked=7646 localWindow=12575266 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7646 localWindow=10770994 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56450 count=32768 state=4 0x69 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x69 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x69 Stream Ptr 25D56450 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56450 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x69 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x69 concurrent=3 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x69 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x69 to stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25D56450 0x69 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25D56450 0x69 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x69 concurrent=2 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56450 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 323 flags 4 id 0x6B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x6B priorityLen=0 stream=25D56560 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x6B fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56560 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56560 count=32768 state=4 0x6B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: xDfjiDU0KVksYj1uCVH2gyFSUgPTfGiFlo-oi8z_TsT12uxOsPNs2A== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/jpeg +[19256:Socket Thread]: I/nsHttp content-length: 7646 +[19256:Socket Thread]: I/nsHttp last-modified: Tue, 26 Nov 2019 18:10:37 GMT +[19256:Socket Thread]: I/nsHttp accept-ranges: bytes +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:47 GMT +[19256:Socket Thread]: I/nsHttp etag: "66329d73a2fa616ffb93ef1bb30c8eb2" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: xDfjiDU0KVksYj1uCVH2gyFSUgPTfGiFlo-oi8z_TsT12uxOsPNs2A== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 7646 flags 0 id 0x6B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6B Stream Ptr 25D56560 Fin=0 Len=7646 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6B newbytes=7646 unacked=7646 localWindow=12575266 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=7646 localWindow=10763348 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56560 count=32768 state=4 0x6B +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x6B +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6B Stream Ptr 25D56560 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56560 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x6b +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x6B concurrent=2 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x6B needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x6B to stream 25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25D56560 0x6B 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25D56560 0x6b 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x6B concurrent=1 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56560 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 298 flags 5 id 0x63 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x63 priorityLen=0 stream=25D56010 end_stream=1 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x63 fin=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25D56010 response code 304 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25D56010 count=32768 state=4 0x63 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 304 Not Modified +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:48 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 09 Jan 2020 21:38:54 GMT +[19256:Socket Thread]: I/nsHttp etag: "18512b3917c3518e29b5037afd158875" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: xtYCDCb_P6RdFpK1pfKX_tvPaY5WRS3L2YRh3HWZSpuCWCYZKfCOxw== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:48 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Thu, 09 Jan 2020 21:38:54 GMT +[19256:Socket Thread]: I/nsHttp etag: "18512b3917c3518e29b5037afd158875" +[19256:Socket Thread]: I/nsHttp cache-control: max-age=60,must-revalidate +[19256:Socket Thread]: I/nsHttp server: AmazonS3 +[19256:Socket Thread]: I/nsHttp x-cache: RefreshHit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: xtYCDCb_P6RdFpK1pfKX_tvPaY5WRS3L2YRh3HWZSpuCWCYZKfCOxw== +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25D56010 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x63 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x63 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 id 0x63 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 by ID 0x63 to stream 25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25D56010 0x63 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25D56010 0x63 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x63 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25D56010 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 6s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 0s +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /tr/?id=455459264638154&ev=Microdata&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838247720&cd[DataLayer]=%5B%5D&cd[Meta]=%7B%22title%22%3A%22Ellation%20Player%20Service%22%7D&cd[OpenGraph]=%7B%7D&cd[Schema.org]=%5B%5D&cd[JSON-LD]=%5B%5D&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=1&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&es=automatic&tm=3&rqm=GET HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: www.facebook.com +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: */* +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Referer: https://static.vrv.co/vilos/player.html +[19256:Main Thread]: I/nsHttp Cookie: fr=0n8W9lfceXj8iBEXM.AWUsIk8ihWrQWtdRe71d5XzJQWM.BdmQEk.me.F4Z.0.0.BeGib_.AWVPPtzY; datr=2RizXQE4d6kfxC1WaecEWG8c; sb=3hizXanMHhMK632SxXXV0x-o +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405670 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=2E10C400 stream=25405670 serial=20 NextID=0x15 (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 25405670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 ReadSegments reader=2E10C40C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25405670 count=911 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25405670 avail=911 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=2E10C400 key=https://www.facebook.com/[]/[http2.20]/tr/?id=455459264638154&ev=Microdata&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838247720&cd[DataLayer]=%5B%5D&cd[Meta]=%7B%22title%22%3A%22Ellation%20Player%20Service%22%7D&cd[OpenGraph]=%7B%7D&cd[Schema.org]=%5B%5D&cd[JSON-LD]=%5B%5D&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=1&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&es=automatic&tm=3&rqm=GET requestcontext=25C0B820 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 2E10C400 stream=25405670 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 2E10C400 counting stream 25405670 Currently 1 streams in session, high water mark is 1 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=2E10C400 stream=25405670 id=0x15 concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 Stream ID 0x15 [session=2E10C400] for URI /tr/?id=455459264638154&ev=Microdata&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838247720&cd[DataLayer]=%5B%5D&cd[Meta]=%7B%22title%22%3A%22Ellation%20Player%20Service%22%7D&cd[OpenGraph]=%7B%7D&cd[Schema.org]=%5B%5D&cd[JSON-LD]=%5B%5D&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=1&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&es=automatic&tm=3&rqm=GET +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25405670 depends on background group for trans 2B29D800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25405670 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 Generating 386 bytes of HEADERS for stream 0x15 with priority weight 10 dep 0x7 frames 1 uri=/tr/?id=455459264638154&ev=Microdata&dl=https%3A%2F%2Fstatic.vrv.co%2Fvilos%2Fplayer.html&rl=https%3A%2F%2Fvrv.co%2Fwatch%2FGYW4NNEE6%2FBIGFOOT%3ACommunity-Profile&if=true&ts=1578838247720&cd[DataLayer]=%5B%5D&cd[Meta]=%7B%22title%22%3A%22Ellation%20Player%20Service%22%7D&cd[OpenGraph]=%7B%7D&cd[Schema.org]=%5B%5D&cd[JSON-LD]=%5B%5D&sw=2560&sh=1440&v=2.9.15&r=stable&a=seg&ec=1&o=30&fbp=fb.1.1575721266338.260923294&it=1578838246039&coo=false&es=automatic&tm=3&rqm=GET +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25405670 used 911 of 911. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25405670 0x15 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25405670 inline=399 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=2E10C400 stream=25405670 result 0 len=399 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=399 rv=0 actual=399 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405670 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405670 trans readsegments rv 0 read=911 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=25405670 countread=911 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 will write from Http2Stream 25405670 0x15 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 ReadSegments reader=2E10C40C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405670 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405670 0x15: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405670 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 2E10C400 stream=25405670 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 8 data len 4 flags 0 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 len=10420224 Stream 0x15. +[19256:Socket Thread]: I/nsHttp Http2Session::RecvWindowUpdate 2E10C400 stream 0x15 window 65536 increased by 10420224 now 10485760. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 1 data len 84 flags 4 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 2E10C400 stream 0x15 priorityLen=0 stream=25405670 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 2E10C400 for 0x15 fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25405670 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:48 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:48 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 21 Dec 2012 00:00:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate, max-age=0 +[19256:Socket Thread]: I/nsHttp set-cookie: +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 44 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp content-type: image/gif +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:10:48 GMT +[19256:Socket Thread]: I/nsHttp expires: Sun, 12 Jan 2020 14:10:48 GMT +[19256:Socket Thread]: I/nsHttp last-modified: Fri, 21 Dec 2012 00:00:01 GMT +[19256:Socket Thread]: I/nsHttp cache-control: no-cache, must-revalidate, max-age=0 +[19256:Socket Thread]: I/nsHttp set-cookie: +[19256:Socket Thread]: I/nsHttp strict-transport-security: max-age=31536000; includeSubDomains +[19256:Socket Thread]: I/nsHttp content-length: 44 +[19256:Socket Thread]: I/nsHttp server: proxygen-bolt +[19256:Socket Thread]: I/nsHttp alt-svc: h3-24=":443"; ma=3600 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 0 data len 44 flags 1 id 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=2E10C400 Stream ID 0x15 Stream Ptr 25405670 Fin=1 Len=44 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=2E10C400 newbytes=44 localWindow=12582780 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x15 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x15 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0x15 concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=2E10C400 id 0x15 needscleanup=00000000. cleanup stream based on stream->writeSegments returning code 80470002 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 by ID 0x15 to stream 25405670 +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 2E10C400 25405670 0x15 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 2E10C400 25405670 0x15 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 2E10C400 id=0x15 concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405670 +[19256:Main Thread]: I/nsHttp http request [ +[19256:Main Thread]: I/nsHttp GET /watch/GYW4NNEE6/BIGFOOT:Community-Profile HTTP/1.1 +[19256:Main Thread]: I/nsHttp Host: vrv.co +[19256:Main Thread]: I/nsHttp User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0 +[19256:Main Thread]: I/nsHttp Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 +[19256:Main Thread]: I/nsHttp Accept-Language: en-US,en;q=0.5 +[19256:Main Thread]: I/nsHttp Accept-Encoding: gzip, deflate, br +[19256:Main Thread]: I/nsHttp Cookie: ajs_user_id=%226182099%22; ajs_group_id=null; ajs_anonymous_id=%228f79343b-6f52-4c80-ae8d-9fdf81a8e119%22; _ga=GA1.2.1808997951.1575721266; _fbp=fb.1.1575721266338.260923294; _token=true; _gid=GA1.2.1480292334.1578752734 +[19256:Main Thread]: I/nsHttp Connection: keep-alive +[19256:Main Thread]: I/nsHttp Upgrade-Insecure-Requests: 1 +[19256:Main Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Stream::Http2Stream 25405670 +[19256:Socket Thread]: I/nsHttp Http2Session::AddStream session=25499800 stream=25405670 serial=1 NextID=0x6D (tentative) +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25405670 0x0 block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 ReadSegments reader=2549980C count=2048 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnReadSegment 25405670 count=591 state=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ParseHttpRequestHeaders 25405670 avail=591 state=0 +[19256:Socket Thread]: I/nsHttp Pushed Stream Lookup session=25499800 key=https://vrv.co/[]/[http2.1]/watch/GYW4NNEE6/BIGFOOT:Community-Profile requestcontext=240474C0 cache=00000000 hit=00000000 +[19256:Socket Thread]: I/nsHttp Http2Session::TryToActivate 25499800 stream=25405670 +[19256:Socket Thread]: I/nsHttp Http2Session::IncrementCounter 25499800 counting stream 25405670 Currently 1 streams in session, high water mark is 22 +[19256:Socket Thread]: I/nsHttp Http2Session::RegisterStreamID session=25499800 stream=25405670 id=0x6D concurrent=1 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 Stream ID 0x6D [session=25499800] for URI /watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25405670 depends on background group for trans 06154800 +[19256:Socket Thread]: I/nsHttp Http2Stream::UpdatePriorityDependency 25405670 depends on stream 0x7 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 Generating 89 bytes of HEADERS for stream 0x6D with priority weight 21 dep 0x7 frames 1 uri=/watch/GYW4NNEE6/BIGFOOT:Community-Profile +[19256:Socket Thread]: I/nsHttp ParseHttpRequestHeaders 25405670 used 591 of 591. requestheadersdone = 1 mOpenGenerated = 1 +[19256:Socket Thread]: I/nsHttp AdjustInitialwindow increased flow control window 25405670 0x6D 12451840 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame 25405670 inline=102 stream=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::TransmitFrame for inline BufferOutput session=25499800 stream=25405670 result 0 len=102 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=102 rv=0 actual=102 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405670 from 0 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405670 trans readsegments rv 0 read=591 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25405670 countread=591 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 will write from Http2Stream 25405670 0x6D block-input=0 block-output=0 +[19256:Socket Thread]: I/nsHttp Http2Stream 25405670 ReadSegments reader=2549980C count=32768 state=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405670 trans readsegments rv 0 read=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ReadSegments 25405670 0x6D: Sending request data complete, mUpstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Stream::ChangeState() 25405670 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadSegments 25499800 stream=25405670 stream send complete +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 1 data len 303 flags 4 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvHeaders 25499800 stream 0x6D priorityLen=0 stream=25405670 end_stream=0 end_headers=4 priority_group=0 paddingLength=0 padded=0 +[19256:Socket Thread]: I/nsHttp Http2Session::ResponseHeadersComplete 25499800 for 0x6D fin=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::ConvertResponseHeaders 25405670 response code 200 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 7 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 7 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 7 to 1 +[19256:Socket Thread]: I/nsHttp http response [ +[19256:Socket Thread]: I/nsHttp HTTP/2.0 200 OK +[19256:Socket Thread]: I/nsHttp cache-control: max-age=300, public +[19256:Socket Thread]: I/nsHttp content-security-policy: frame-ancestors 'none' +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:24 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-frame-options: deny +[19256:Socket Thread]: I/nsHttp x-powered-by: Express +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: NIVB1JYV381S9ENwBvoTidb5XEoDSuMAkqJyLdsewSL0vZkAN4JIWQ== +[19256:Socket Thread]: I/nsHttp age: 221 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp OriginalHeaders +[19256:Socket Thread]: I/nsHttp cache-control: max-age=300, public +[19256:Socket Thread]: I/nsHttp content-security-policy: frame-ancestors 'none' +[19256:Socket Thread]: I/nsHttp date: Sun, 12 Jan 2020 14:07:24 GMT +[19256:Socket Thread]: I/nsHttp server: nginx/1.10.1 +[19256:Socket Thread]: I/nsHttp x-frame-options: deny +[19256:Socket Thread]: I/nsHttp x-powered-by: Express +[19256:Socket Thread]: I/nsHttp x-cache: Hit from cloudfront +[19256:Socket Thread]: I/nsHttp via: 1.1 6fcb3966d0deb6baf3867f346443cb9a.cloudfront.net (CloudFront) +[19256:Socket Thread]: I/nsHttp x-amz-cf-pop: JFK51-C1 +[19256:Socket Thread]: I/nsHttp x-amz-cf-id: NIVB1JYV381S9ENwBvoTidb5XEoDSuMAkqJyLdsewSL0vZkAN4JIWQ== +[19256:Socket Thread]: I/nsHttp age: 221 +[19256:Socket Thread]: I/nsHttp X-Firefox-Spdy: h2 +[19256:Socket Thread]: I/nsHttp ] +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=8192 localWindow=12574720 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10755156 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24576 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=16384 localWindow=12566528 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10746964 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24576 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16738 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16384 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=24576 localWindow=12558336 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10738772 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16384 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=8192 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=32768 localWindow=12550144 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10730580 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=8192 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=372 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=348 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32420 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=40960 localWindow=12541952 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10722388 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24576 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=49152 localWindow=12533760 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10714196 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24576 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16774 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16750 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16750 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16750 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16750 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=57344 localWindow=12525568 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10706004 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24210 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 6907 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=6907 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=6907 unacked=64251 localWindow=12518661 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=6907 localWindow=10699097 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24210 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=17303 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=72443 localWindow=12510469 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10690905 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24576 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=80635 localWindow=12502277 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10682713 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24576 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16426 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16384 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=88827 localWindow=12494085 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10674521 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16384 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=8192 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=97019 localWindow=12485893 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10666329 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=8192 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=60 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=36 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=36 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=36 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=36 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=36 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=36 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32732 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=105211 localWindow=12477701 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10658137 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32732 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24540 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=113403 localWindow=12469509 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10649945 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24540 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16426 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=16402 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 4 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32768 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 8192 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=8192 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=8192 unacked=121595 localWindow=12461317 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=8192 localWindow=10641753 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=32714 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24522 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 5606 flags 0 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=0 Len=5606 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalStreamWindow this=25499800 id=0x6D newbytes=5606 unacked=127201 localWindow=12455711 +[19256:Socket Thread]: I/nsHttp Http2Session::UpdateLocalSessionWindow this=25499800 newbytes=5606 localWindow=10636147 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=24522 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=18916 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 0 data len 0 flags 1 id 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 4 +[19256:Socket Thread]: I/nsHttp Start Processing Data Frame. Session=25499800 Stream ID 0x6D Stream Ptr 25405670 Fin=1 Len=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::WriteSegments 25405670 count=32768 state=4 +[19256:Socket Thread]: I/nsHttp Http2Stream::OnWriteSegment 25405670 count=18916 state=4 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::SetNeedsCleanup 25499800 - recorded downstream fin of stream 25405670 0x6D +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 4 to 1 +[19256:Socket Thread]: I/nsHttp SetRecvdFin id=0x6d +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x6D concurrent=1 active=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments session=25499800 stream=25405670 0x6D cleanup stream based on mNeedsCleanup. +[19256:Socket Thread]: I/nsHttp Http2Session::CleanupStream 25499800 25405670 0x6D 0 +[19256:Socket Thread]: I/nsHttp Http2Session::CloseStream 25499800 25405670 0x6d 0 +[19256:Socket Thread]: I/nsHttp MaybeDecrementConcurrent 25499800 id=0x6D concurrent=0 active=0 +[19256:Socket Thread]: I/nsHttp Http2Stream::~Http2Stream 25405670 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 51s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 26210400 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 26210400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 33s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 26210400 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 34s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E140800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 35s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2BCF1000 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCF1000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E140800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCF1000::14] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2BCF1000 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E147800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 36s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E147800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E149000 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E149000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E147C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 37s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E149000 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E147C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A0C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 30C9DC00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9DC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 38s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 30C9A400 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9A400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A3800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A3800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A0C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 30C9A400 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 30C9DC00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A3C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 5s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2BCEAC00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCEAC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B29FC00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E143000 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 39s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A4C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A3C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A4C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B29FC00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2BCEAC00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E143000 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E10C400 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 6s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 40s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E10C400 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 7s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 5s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 41s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 5s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 17s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 24s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 22s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 21s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 25499800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 22s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 25499800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 21s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 21s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 25s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 23s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 22s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 23s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 51s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 26210400 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 26210400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 33s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[26210400::8] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 26210400 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 26210400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 26210400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 34s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 53s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E140800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 35s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2BCF1000 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCF1000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E140800::15] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E140800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E140800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E140800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCF1000::14] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2BCF1000 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCF1000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCF1000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 54s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E147800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 36s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147800::18] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E147800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 55s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E149000 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E149000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E147C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 37s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E149000::21] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E149000 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E149000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E149000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E147C00::17] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E147C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E147C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E147C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 56s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A0C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 30C9DC00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9DC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 38s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 30C9A400 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9A400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A3800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3800::9] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A3800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A0C00::12] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A0C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A0C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A0C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9A400::22] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 30C9A400 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9A400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9A400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[30C9DC00::23] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 30C9DC00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 30C9DC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 30C9DC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 57s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A3C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 5s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2BCEAC00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCEAC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B29FC00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E143000 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 39s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2B2A4C00 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A4C00::13] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A4C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A4C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A4C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B2A3C00::10] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B2A3C00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B2A3C00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2B29FC00::11] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2B29FC00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2B29FC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B29FC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2BCEAC00::24] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2BCEAC00 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2BCEAC00 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2BCEAC00 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E143000::25] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E143000 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E143000 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E143000 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 2E10C400 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 6s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 40s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[2E10C400::20] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 2E10C400 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 2E10C400 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2E10C400 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 3s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 7s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 5s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 4s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 41s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 5s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 2s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 1s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 2B2A3C00 buffering frame header read failure 804b0014 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A3C00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2B2A3C00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2B2A3C00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3C00 sz=17 rv=804b0014 actual=0 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2B2A3C00 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 17s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 24s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 22s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 21s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 58s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 generating ping +[19256:Socket Thread]: I/nsHttp Http2Session::GeneratePing 25499800 isAck=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 22s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments[25499800::1] Frame Header Read type 6 data len 8 flags 1 id 0x0 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 1 to 2 +[19256:Socket Thread]: I/nsHttp Http2Session::RecvPing 25499800 PING Flags 0x1. +[19256:Socket Thread]: I/nsHttp Http2Session::ResetDownstreamState() 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::ChangeDownstreamState() 25499800 from 2 to 1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session 25499800 buffering frame header read failure 80470007 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 18s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A0C00 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E149000 delta since last read 21s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147C00 delta since last read 21s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 26210400 delta since last read 25s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E140800 delta since last read 23s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCEAC00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E147800 delta since last read 22s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9DC00 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 0s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 30C9A400 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2BCF1000 delta since last read 23s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A3800 delta since last read 20s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 19s +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 26210400 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 26210400 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 26210400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 26210400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 26210400 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 26210400 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2E140800 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2E140800 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E140800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2BCF1000 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2BCF1000 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCF1000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCF1000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCF1000 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2BCF1000 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E140800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E140800 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2E140800 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2E147C00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2E147C00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2E147800 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2E147800 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E147800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147800 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2E147800 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E147C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E147C00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2E147C00 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2E149000 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2E149000 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E149000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E149000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E149000 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2E149000 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2B2A0C00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2B2A0C00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A0C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2BCEAC00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2BCEAC00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2BCEAC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 30C9DC00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 30C9DC00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9DC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 30C9A400 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 30C9A400 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 30C9A400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2B2A3800 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2B2A3800 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A3800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A3800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A3800 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2B2A3800 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9DC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9DC00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 30C9DC00 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A0C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A0C00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2B2A0C00 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 30C9A400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 30C9A400 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 30C9A400 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2BCEAC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2BCEAC00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2BCEAC00 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E10C400 delta since last read 51s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B29FC00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2E143000 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 33s +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 2B2A4C00 delta since last read 52s +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2B29FC00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2B29FC00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B29FC00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2E143000 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2E143000 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E143000 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2B2A4C00 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2B2A4C00 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2B2A4C00 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B29FC00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B29FC00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2B29FC00 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2B2A4C00 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2B2A4C00 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2B2A4C00 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E143000 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E143000 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2E143000 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 2E10C400 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 2E10C400 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 2E10C400 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 2E10C400 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 2E10C400 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 2E10C400 mDownstreamState=1 +[19256:Socket Thread]: I/nsHttp Http2Session::ReadTimeoutTick 25499800 delta since last read 39s +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::Close 25499800 0 +[19256:Socket Thread]: I/nsHttp Http2Session::GenerateGoAway 25499800 code=0 +[19256:Socket Thread]: I/nsHttp Http2Session::FlushOutputQueue 25499800 sz=17 rv=0 actual=17 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::WriteSegments 25499800 InternalState 1 +[19256:Socket Thread]: I/nsHttp Http2Session::DontReuse 25499800 +[19256:Socket Thread]: I/nsHttp Http2Session::~Http2Session 25499800 mDownstreamState=1 diff --git a/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.exe b/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.exe index 52b4047..3f8945d 100644 Binary files a/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.exe and b/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.exe differ diff --git a/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.pdb b/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.pdb index 4a8f533..43ab44c 100644 Binary files a/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.pdb and b/Crunchyroll Downloader/obj/x86/Debug/Crunchyroll Downloader.pdb differ diff --git a/Crunchyroll Downloader/obj/x86/Debug/build.force b/Crunchyroll Downloader/obj/x86/Debug/build.force new file mode 100644 index 0000000..e69de29 diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.exe b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.exe new file mode 100644 index 0000000..46339c2 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.exe differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.pdb b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.pdb new file mode 100644 index 0000000..cb0555c Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.pdb differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.CopyComplete b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.CoreCompileInputs.cache b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b2a242b --- /dev/null +++ b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f668d0f94c47b54c616ebebebfe5627529373081 diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.FileListAbsolute.txt b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..c672ba1 --- /dev/null +++ b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.Anime_Add.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.einstellungen.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.GeckoFX.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.SoftSub.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.Startup.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.Main.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.Resources.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll_Downloader.Reso.resources +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll Downloader.vbproj.GenerateResource.cache +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll Downloader.vbproj.CoreCompileInputs.cache +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Crunchyroll Downloader.exe.config +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Crunchyroll Downloader.exe +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Crunchyroll Downloader.pdb +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Crunchyroll Downloader.xml +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Geckofx-Core.dll +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Geckofx-Winforms.dll +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll Downloader.vbprojAssemblyReference.cache +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll Downloader.vbproj.CopyComplete +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll Downloader.exe +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll Downloader.xml +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\obj\x86\Release\Crunchyroll Downloader.pdb +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Helpers.dll +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Helpers.pdb +D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0\Crunchyroll Downloader\bin\x86\Release\Helpers.xml diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.GenerateResource.cache b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.GenerateResource.cache new file mode 100644 index 0000000..13d1203 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbproj.GenerateResource.cache differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbprojAssemblyReference.cache b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbprojAssemblyReference.cache new file mode 100644 index 0000000..7371bc8 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.vbprojAssemblyReference.cache differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.xml b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.xml new file mode 100644 index 0000000..459cbde --- /dev/null +++ b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll Downloader.xml @@ -0,0 +1,329 @@ + + + + +Crunchyroll Downloader + + + + + + Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + + + + + Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + + + + + Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die "type":"midroll" ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die {"type":"preroll","offset":0}, ähnelt. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die <img id="footer_country_flag" src="https://www.crunchyroll.com/i/country_flags/ ähnelt. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die ","resolution":"adaptive" ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die "format":"adaptive_hls", ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </body> +</html> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </a> + +</div> + +</div> + +</div> + +<img alt="image error" src="balken1.png" class="class-balken"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die " class="imagestyle"> + +<div> + +<span class="titel" dir="auto"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die <!DOCTYPE html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> +</head> +<html> + <title>CRD</title> + + <style> + .main-bg {margin:0 0 0 0;background-color:#F2F2F2;} + .div-spacer{width:16px;height:110px;display:block;margin-bottom:14px;position:relative} + .div-episode{width:804px;height:110px;display:block;margin-bottom:14px;position:relative} + .class-balken{width:820px;height:8px;display:block;margin-bottom:4px;margin-top:6px} + .class-cc{width:36px; [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </span> + +<div class="progressbar"> + +<div class="progressbar-value" style="width: 0%"></div> + +</div> +<span dir="auto" class='percenttext'>0%</span> +<div> +<span dir="auto" class="resotext"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die "> <img alt="image error" src="cc1.png" class="class-cc"> ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die </span> + +<a href="#" class="cc-wert" title="Softsubs: ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die + <div class="div-episode"> + +<img alt="image error" src=" ähnelt. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol). + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap. + + + + + Sucht eine lokalisierte Zeichenfolge, die <!DOCTYPE html> +<html> + <title>CRD</title> + + <style> + .main-bg {margin:0 0 0 -36px;background-color:#757575;} + .imagestyle{width:156px;height:88px;display:block;margin-bottom:4px} .ulStyle{margin:0 0 0 -10px;display:block;position:relative;margin-top:8px} + .ulStyle li{margin-left:12px;float:left;display:block;position:relative} + .listyle{width:156px;display:block;background:#fff;padding:16px;margin-bottom:14px;position:relative;background-color:#b5b3b3} + .progressbar{height:14px;backgro [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + + + + + Sucht eine lokalisierte Zeichenfolge, die "thumbnail":{"url":" ähnelt. + + + + diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Anime_Add.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Anime_Add.resources new file mode 100644 index 0000000..98446a6 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Anime_Add.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.GeckoFX.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.GeckoFX.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.GeckoFX.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Main.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Main.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Main.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Reso.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Reso.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Reso.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Resources.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Resources.resources new file mode 100644 index 0000000..3708bf8 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Resources.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.SoftSub.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.SoftSub.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.SoftSub.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Startup.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Startup.resources new file mode 100644 index 0000000..ab9d897 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.Startup.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.einstellungen.resources b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.einstellungen.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/Crunchyroll_Downloader.einstellungen.resources differ diff --git a/Crunchyroll Downloader/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache b/Crunchyroll Downloader/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..a461044 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Crunchyroll Downloader/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Crunchyroll Downloader/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..d997e4f Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Crunchyroll Downloader/obj/x86/Release/TempPE/My Project.Resources.Designer.vb.dll b/Crunchyroll Downloader/obj/x86/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..3b68513 Binary files /dev/null and b/Crunchyroll Downloader/obj/x86/Release/TempPE/My Project.Resources.Designer.vb.dll differ