
Networking
文章平均质量分 76
daeees
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TCP关闭全状态记录
关闭时状态转变:client: Fin_wait_1 -> Fin_wait_2 -> Time_wait -> closedserver: Close_wait -> Last_ack -> closedFin_wait_1 发生在client 发出Fin包后, 并等待server 回 ack 时.Fin_wait_2 发生在client收到ack包后, 并等待server发出Fin包时.Time_wait 发生在client收到Fin包并发出ack包后, 在等待2msl的时间时.Close_wai原创 2010-07-07 18:31:00 · 3512 阅读 · 1 评论 -
WCF via HTTP-GET
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ServiceModel;using System.ServiceModel.Web;using System.ServiceModel.Description;namespace RestfulWCFClient{ [ServiceContract] public interface ICalculator原创 2010-10-09 20:12:00 · 540 阅读 · 0 评论