|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) protocol stacks development
协议栈开发
2) protocol development
协议开发
3) protocol stack
协议栈
1.
Analysis of SNMP and implementation of SNMP protocol stack;
SNMP协议分析与协议栈的实现
2.
Study of the Protocol Stack and Architecture of Multi-Service LAN Based on Bluetooth;
基于蓝牙的多业务局域网结构与网关协议栈的研究
3.
Research and Application of ZigBee 2006 Protocol Stack;
ZigBee 2006协议栈的研究与应用
4) Target TCP protocol stack
TargetTCP协议栈
5) oSIP stack
oSIP协议栈
1.
The session initiation protocol(SIP) was introduced,and a method to design IP phone s client terminal based on SIP was put forward, using oSIP stack.
以车载电子多媒体视听系统为研发背景,介绍了SIP协议,并提出了一种在OMAP5912平台下利用开源的oSIP协议栈设计与实现基于SIP协议的IP电话的方法,给出了IP电话终端的硬件电路设计。
6) dual stack
双协议栈
1.
The paper has discussed routing aspects of IPv6 transition,and introduced such techniques as dual stack application in dual-IP environment,point to point tunneling and NAT-PT based on ALG.
探讨了从IPv4向IPv6过渡过程中若干路由问题,提出了双IP层路下双协议栈、点到点的隧道技术以及基于应用层网关的NAT-PT技术。
2.
The thesis designs a IPv4/IPv6 dual stack firewall based on Linux,which chooses shield host system structure.
提出了一个新的采用屏蔽主机体系结构、基于Linux的Ipv4/IPv6双协议栈防火墙设计,同 时提出了防火墙系统中采用的双协议栈系统结构设计。
3.
Focusing on dual stack technology, the operation of nodes with a dual IP layer-IPv4/IPv6 nodes is discussed too.
重点研究IPv4向IPv6过渡方案中双协议栈技术的工作原理,技术特点,进而根据RFC国际化标准补充、完善了双协议栈节点的工作方式、路由发送算法;提出基于双协议栈技术的应用服务系统的技术解决方案。
补充资料:Pro/E二次开发使用toolkit开发trigger的程序
使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数. 我碰到的问题: 1.配置trigger: Name: CimDll Event: Create PIV Time: POST RequireNO DLL:Cim.dll Function:PDMTPIVCreatePostOperation 2.源代码: int PDMDLLInit() { PTCERROR pdm_status; FILE *g_pfileLog; g_pfileLog =fopen("test.dat","w"); setbuf(g_pfileLog,NULL); fprintf(g_pfileLog,"begin test\n"); pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation); if (pdm_status != PDM_SUCCESS) { printf("Failed to Register Trigger PIV Create Post.\n"); } return (pdm_status); } int PDMTPIVCreatePostOperation(int argc, void **argv) { fprintf(g_pfileLog,"test\n"); ..... fprintf(g_pfileLog,"end test\n"); fclose(g_pfileLog); } 结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效. 原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|