Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1902939
  • 博文数量: 376
  • 博客积分: 2147
  • 博客等级: 大尉
  • 技术积分: 3642
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-06 10:47
文章分类

全部博文(376)

文章存档

2019年(3)

2017年(28)

2016年(15)

2015年(17)

2014年(182)

2013年(16)

2012年(115)

我的朋友

发布时间:2014-01-08 09:54:02

From Wikipedia, the free encyclopedia  (Redirected from TCP Offload Engine)Jump to: navigation, search TCP offload engine or TOE is a technology used in network interface cards (NIC) to offload processing of the entire TCP/IP stack to the network controller. It is primarily u.........【阅读全文】

阅读(1066) | 评论(0) | 转发(0)

发布时间:2014-01-07 18:11:14

本文主要分析:服务器端如何构造和发送SYNACK段。内核版本:3.6Author:zhangskd @ csdn blog 发送入口 tcp_v4_send_synack()用于发送SYNACK段,在tcp_v4_conn_request()中被调用。首先调用tcp_make_synack()构造SYNACK段,主要是构造TCP报头和初始化skb.........【阅读全文】

阅读(1415) | 评论(0) | 转发(0)

发布时间:2014-01-07 16:18:11

概述 In computer networking, large segment offload (LSO) is a technique for increasing outboundthroughput of high-bandwidth network connections by reducing CPU overhead. It works by queuingup large buffers and letting the network interface card (NIC) split them into separate packets.........【阅读全文】

阅读(3133) | 评论(0) | 转发(0)

发布时间:2014-01-06 16:41:39

为了用户方便查看brcm设备的工作状态,使用proc文件系统是很好的方式。一个网络协议模块可以注册到网络空间中register_pernet_subsys(),这个函数会为子空间分配一个id号,通过id可以在网络空间中找到分配给该子空间的内存:init_net->gen->ptr[id - 1]。而我们正是利用这块内存去存储proc中的相关信息:struct brcm_net.........【阅读全文】

阅读(747) | 评论(0) | 转发(0)

发布时间:2014-01-06 16:39:44

内核版本:2.6.34实现思路:      报文在网络协议栈中的流动,对于接收来讲,是对报文的脱壳的过程,由于报文是已知的输入,只要逐个解析协议号;对于发送来讲,是各层发送函数的嵌套调用,由于没有已知的输入,只能按事先设计好的协议进行层层构造。但无论报文怎样的流动,.........【阅读全文】

阅读(1039) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册