zoukankan      html  css  js  c++  java
  • winsock 主动切断连接 Connection Setup and Teardown

    https://docs.microsoft.com/en-us/windows/win32/winsock/connection-setup-and-teardown-2

    05/31/2018

    The WSAAccept function lets an application obtain caller information such as caller identifier and Quality of Service before deciding whether to accept an incoming connection request. This is done with a callback to an application-supplied condition function.

    User-to-user data specified by parameters in the WSAConnect function and the condition function of WSAAccept can be transferred to the peer during connection establishment, provided this feature is supported by the service provider.

    It is also possible (for protocols that support this) to exchange user data between the endpoints at connection teardown time. The end that initiates the teardown can call the WSASendDisconnect function to indicate that no more data be sent and to initiate the connection teardown sequence. For certain protocols, part of teardown is the delivery of disconnect data from the teardown initiator. After receiving notice that the remote end has initiated teardown (typically by the FD_CLOSE indication), the WSARecvDisconnect function can be called to receive the disconnect data, if any.

    To illustrate how disconnect data can be used, consider the following scenario. The client half of a client/server application is responsible for terminating a socket connection. Coincident with the termination, it provides (using disconnect data) the total number of transactions it processed with the server. The server in turn responds with the cumulative total of transactions that it has processed with all clients. The sequence of calls and indications might occur as follows:

    Table 1
    Client sideServer side
    (1) Invoke WSASendDisconnect to conclude session and supply transaction total.  
      (2) Get FD_CLOSE, recv with a return value of zero, or WSAEDISCON error return from WSARecv indicating graceful shutdown in progress.
      (3) Invoke WSARecvDisconnect to get client's transaction total.
      (4) Compute cumulative grand total of all transactions.
      (5) Invoke WSASendDisconnect to transmit grand total.
    (6) Receive FD_CLOSE indication. (5a) Invoke closesocket.
    (7) Invoke WSARecvDisconnect to receive and store cumulative grand total of transactions.  
    (8) Invoke closesocket  

    Note that step (5a) must follow step (5), but has no timing relationship with step (6), (7), or (8).

  • 相关阅读:
    【leetcode】92. 反转链表 II
    【leetcode】91. 解码方法
    【leetcode】89. 格雷编码
    【leetcode】86. 分隔链表
    【leetcode】82. 删除排序链表中的重复元素 II
    为什么选择react
    React 全家桶实现后台管理界面
    前后端同构
    浅谈React前后端同构防止重复渲染
    由React引发的前后端分离架构的思考
  • 原文地址:https://www.cnblogs.com/liujx2019/p/14334908.html
Copyright © 2011-2022 走看看