# 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/tw6o4ga
實現 UDP 可靠性傳輸(KCP 介紹使用)**
1、TCP 協議介紹 TCP 協議是基於 IP 協議,面向連接,可靠基於字節流的傳輸層協議 1、基於 IP 協議:TCP 協議是基於 IP 協議之上傳輸的,TCP 協議報文中的源端口 + IP 協議報文中的源地址 + TCP 協議報文中的目標端口 + IP 協議報文中的目標地址,組合起來唯一確定一條 TCP 連接。 2、面向連接:與 UDP 不同,TCP 在傳輸數據之前,需要進行三次握手,建立一 ⌘ Read more