上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 109 下一页

2013年12月19日

速度之王 — LZ4压缩算法(一)

摘要: LZ4 (Extremely Fast Compression algorithm) 项目:http://code.google.com/p/lz4/ 作者:Yann Collet 本文作者:zhangskd @ csdn blog 简介 LZ4 is a very fast lossl... 阅读全文

posted @ 2013-12-19 17:35 张大大123 阅读(2589) 评论(0) 推荐(0) 编辑

2013年12月3日

未能加载文件或程序集“file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0

摘要: 未能加载文件或程序集“file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\wi... 阅读全文

posted @ 2013-12-03 08:13 张大大123 阅读(448) 评论(0) 推荐(0) 编辑

2013年11月18日

iwms后台出现从客户端(ctl00$cphMain$logo="<img src="pic/logo.g...")中检测到有潜在危险的 Request.Form 值。错误解决方法

摘要: 请将 web.config 文件中httpRuntime 配置节中的 requestValidationMode 特性设置为 requestValidationMode="2.0"。示例: 。设置此值后,可通过在 Page 指令或 配置节中设置 validateRequest="false" ... 阅读全文

posted @ 2013-11-18 18:36 张大大123 阅读(259) 评论(0) 推荐(0) 编辑

Socket层实现系列 — accept()的实现(二)

摘要: 本文主要分析accept()的阻塞等待和唤醒。 内核版本:3.6 Author:zhangskd @ csdn blog 等待队列 (1)socket的等待队列 /* * @sk_wq: sock wait queue head and async head */ struct so... 阅读全文

posted @ 2013-11-18 18:18 张大大123 阅读(235) 评论(0) 推荐(0) 编辑

Socket层实现系列 — accept()的实现(一)

摘要: 本文主要介绍了accept()的系统调用、Socket层实现,以及TCP层实现。 内核版本:3.6 Author:zhangskd @ csdn blog 应用层 int accept(int sockfd, struct sockaddr *addr, socklen_t *addrl... 阅读全文

posted @ 2013-11-18 18:15 张大大123 阅读(348) 评论(0) 推荐(0) 编辑

Socket层实现系列 — getsockname()和getpeername()的实现

摘要: 本文主要介绍了getsockname()和getpeername()的内核实现。 内核版本:3.6 Author:zhangskd @ csdn blog 应用层 int getsockname(int s, struct sockaddr *name, socklen_t *namel... 阅读全文

posted @ 2013-11-18 18:12 张大大123 阅读(1494) 评论(0) 推荐(0) 编辑

2013年11月11日

Socket层实现系列 — listen()的实现

摘要: 本文主要分析listen()的内核实现,包括它的系统调用、Socket层实现、半连接队列,以及监听哈希表。 内核版本:3.6 Author:zhangskd @ csdn blog 应用层 int listen(int sockfd, int backlog); Accept incom... 阅读全文

posted @ 2013-11-11 16:54 张大大123 阅读(419) 评论(0) 推荐(0) 编辑

Socket层实现系列 — bind()的实现(二)

摘要: 本文主要内容:bind()的TCP层实现、端口的冲突处理,以及不同内核版本的实现差异。 内核版本:3.6 Author:zhangskd @ csdn blog TCP层实现 SOCK_STREAM套接口的TCP层操作函数集实例为tcp_prot,其中端口绑定函数为inet_csk_get... 阅读全文

posted @ 2013-11-11 16:52 张大大123 阅读(247) 评论(0) 推荐(0) 编辑

Socket层实现系列 — bind()的实现(一)

摘要: bind()函数的使用方法很简单,但是它是怎么实现的呢? 笔者从应用层出发,沿着网络协议栈,分析了bind()的系统调用、Socket层实现,以及它的TCP层实现。 本文主要内容:bind()的系统调用、bind()的Socket层实现。 内核版本:3.6 Author:zhangskd @... 阅读全文

posted @ 2013-11-11 16:50 张大大123 阅读(396) 评论(0) 推荐(0) 编辑

2013年10月13日

C# DataTable,DataSet,IList,IEnumerable 互转扩展属性

摘要: using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Reflection;using System.Collections;namespace XHSoft.... 阅读全文

posted @ 2013-10-13 20:11 张大大123 阅读(173) 评论(0) 推荐(0) 编辑

上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 109 下一页

导航