Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4973234
  • 博文数量: 1696
  • 博客积分: 10870
  • 博客等级: 上将
  • 技术积分: 18357
  • 用 户 组: 普通用户
  • 注册时间: 2007-03-30 15:16
文章分类
文章存档

2017年(1)

2016年(1)

2015年(1)

2013年(1)

2012年(43)

2011年(17)

2010年(828)

2009年(568)

2008年(185)

2007年(51)

分类: C/C++

2010-04-07 23:49:47

Copyright (C) 2008 by CO-CONV, Corp., Kyoto, Japan.

Developed by co-research between CO-CONV, Corp. and WIDE Project.
--------------------------------------------------------------------------------
25 Dec. 2008:

Operating System:
- Windows XP (with SP2 or SP3) (32bit)
- Windows Vista (with and without SP1) (32bit)


Install:
Double click sctpDrv-1-0-0-0.msi, which is a Windows Installer package of
sctpDrv.
A kernel driver(sctp.sys) and a dll(sctpsp.dll and sctpmon.dll) installed
into your system.
There is no need to reboot your system.

If you run sctpDrv on Vista, you have to modify the configuration of firewall.
In brief, you have to configure Windows Firewall with Advanced Security to
pass SCTP.
In detail:
(1) Open Windows Firewall with Advanced snap-in.
(2) Right-click "Inbound Exceptions", and then click "New Exception".
(3) Create a new rule for SCTP:
Type: Custom
Programs and Services: System (enter into text line for full path)
Protocols and Ports:
Protocol Type: Custom (132)
Scope: Any addresses
Action: Allow all connections
Profiles: Apply to all the profiles (domain, public, public)


Un-install:
Open the context menu for sctpDrv-1-0-0-0.msi and click "Uninstall".
After the un-installation, you have to reboot your system.


Installed Files:
After the installation, the below files will be installed into your system.

--------------------------------------------------------------------------------
c:\Program Files\sctpDrv\
\bin
\echo_client.exe (Sample application)
\echo_server.exe (Sample application)
\iperf.exe (Performance measurement tool)
\inc
\ws2sctp.h (Header files for use of SCTP)
\lib
\sctpsp.lib (Import library for use of SCTP API)
\src
\echo_client.c (One-to-One Client sample)
\echo_server.c (One-to-One Model Server sample)
\echo_server2.c (One-to-Many Model Server sample)

c:\Windows\
\system32
\sctpsp.dll (Dll for sctpDrv)
\sctpmon.dll (Dll for netsh)

\drivers
\sctp.sys (Kernel driver of SCTP)
--------------------------------------------------------------------------------


Use of SCTP:
In order to use SCTP, you have to append the directory of ws2sctp.h into the
Include Path of your compiler and link sctpsp.lib into your application.

In the case of Visual C++ compiler,
prompt>cl /D__Windows__ /I "c:\Program Files\SctpDriver\inc" echo_client.c \
ws2_32.lib "c:\Program Files\sctpDrv\lib\sctpsp.lib"


Limitations and knonw bugs:
- On XP, updating route information may be slow.


Development of sctpDrv:
You can access the source codes of sctpDrv under the modified BSD license.
Available at


Mail lists for sctpDrv:
There are two lists for sctpDrv.

sctpdrv-users at sctp.jp (for users of sctpDrv)
sctpdrv-dev at sctp.jp (for developers of sctpDrv)

In order to subscribe these lists, you will access
OR
http://www.sctp.jp/mailman/listinfo/sctpdrv-dev

If you encounter a trouble with regatd to sctpDrv, please contact us
through these lists.
--------------------------------------------------------------------------------


Happy SCTPing!
阅读(1663) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-04-20 02:51:27

The version of SctpDrv from Co-Conv appears to be unmaintained, and has many bugs. I (Bruce Cran) have created a new site and have been fixing bugs and improving the user experience. New versions of SctpDrv can be found at http://www.bluestop.org/SctpDrv .