# I am the Watcher. I am your guide through this vast new twtiverse.
#
# Usage:
# https://watcher.sour.is/api/plain/users View list of users and latest twt date.
# https://watcher.sour.is/api/plain/twt View all twts.
# https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri.
# https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject.
#
# Options:
# uri Filter to show a specific users twts.
# offset Start index for quey.
# limit Count of items to return (going back in time).
#
# twt range = 1 1
# self = https://watcher.sour.is/conv/zy5lfsq
快速瞭解 TCP 連接的 11 種狀態及其轉換**
本文意在用簡短的文字總結一下 TCP 的 11 種狀態及其轉換過程。TCP 的 11 種狀態------------1. CLOSED• 表示連接處於關閉狀態。 • 這是 TCP 連接的初始狀態或連接終止後的狀態。 • 常見場景:服務端程序尚未啓動監聽,或者客戶端和服務端都已完成連接釋放。 2. LISTEN• 服務器端狀態,表示服務器在監聽某個端口,等待客戶端發起連接。 ⌘ Read more