我正在使用BouncyCastle 1.59在Java中实现webrtc网关。 服务器回复ServerHelloDone后,客户端(chrome)发送Alert(握手失败)。
Chrome调试日志:
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
box(title="TITLE",status="primary",solidHeader=TRUE,style="",
width=2,
h1(strong("$89,90")),
h5("Some text here"),
hr(),
h4("More text"),
hr(),
h4("More text"),
hr(),
h4("More text"),
hr(),
h4("More text"),
hr(),
actionButton("button","Login and subscribe",class="btn-primary")
))
)
server <- function(input, output, session) {
observeEvent(input$button, {
## do something
})
}
shinyApp(ui, server)
wireshark软件包捕获 https://drive.google.com/file/d/17ctubdzw0rXhpIEfyIZWjVlcxB9AopdP/view?usp=sharing
有什么建议吗?