码迷,mamicode.com
首页 >  
搜索关键字:errbuf    ( 14个结果
EBS Report开发案例
1.写包:包头: 包体: 2.建模板(可拿原有的rtf模板,在它的基础上修改) 链接:http://pan.baidu.com/s/1hrDMiLe 密码:k8ug 3.定义可执行程序 4.定义并发程序 5.上传rtf模板 6.跑报表请求 ...
分类:其他好文   时间:2017-08-26 15:58:30    阅读次数:171
发送数据包
#include"stdafx.h"#include<stdlib.h>#include<stdio.h>#include<pcap.h>voidmain(intargc,char**argv){pcap_t*fp;charerrbuf[PCAP_ERRBUF_SIZE];u_charpacket[100];inti;pcap_if_t*alldevs;pcap_if_t*d;intinum;intj=0;/*获得设备列表*/if(pcap_findalldev..
分类:其他好文   时间:2017-01-03 08:44:43    阅读次数:183
发送数据包
#include"stdafx.h"#include<stdlib.h>#include<stdio.h>#include<pcap.h>voidmain(intargc,char**argv){pcap_t*fp;charerrbuf[PCAP_ERRBUF_SIZE];u_charpacket[100];inti;pcap_if_t*alldevs;pcap_if_t*d;intinum;intj=0;/*获得设备列表*/if(pcap_findalldev..
分类:其他好文   时间:2016-11-17 02:40:59    阅读次数:158
欺骗被欺骗
#include"stdafx.h"#include.h>int_tmain(intargc,_TCHAR*argv[]){pcap_if_t*allAdapters;//适配器列表pcap_if_t*adapter;pcap_t*adapterHandle;//适配器句柄u_charpacket[1020];//待发送的数据封包charerrorBuffer[PCAP_ERRBUF_SIZE];//错误信息缓冲区if(pcap_findalldevs_..
分类:其他好文   时间:2016-11-17 02:39:19    阅读次数:233
发送数据包
【实验代码】//sendpacket.cpp:定义控制台应用程序的入口点。//#include"stdafx.h"#include<stdlib.h>#include<stdio.h>#include<pcap.h>voidmain(intargc,char**argv){pcap_t*fp;pcap_if_t*d;pcap_if_t*alldevs;intinum;charerrbuf[PCAP_ERRBUF_SIZE];u_cha..
分类:其他好文   时间:2016-11-17 02:38:15    阅读次数:210
获取设备列表
#include"stdafx.h"#include"pcap.h"int_tmain(intargc,_TCHAR*argv[]){ pcap_if_t*alldevs;pcap_if_t*d;inti=0;charerrbuf[PCAP_ERRBUF_SIZE];/*获取本地机器设备列表*/if(pcap_findalldevs_ex(PCAP_SRC_IF_STRING,NULL/*authisnotneeded*/,&alldevs,errbuf)==-1){fprintf..
分类:其他好文   时间:2016-10-25 19:56:57    阅读次数:140
winpcap 发送接收速率
总体情况: 在不修改winpcap源码的情况下,发包、收包最大速率3包/ms。 收包几个api的速率: 1、 m_fp = pcap_open_live(adapter->name, 65536, PCAP_OPENFLAG_MAX_RESPONSIVENESS, 1, m_errbuf);; 接收... ...
分类:Windows程序   时间:2016-07-07 09:56:34    阅读次数:501
自定义报表开发(HTML/XML)
定义报表执行的包或存储过程: --创建包头 CREATE OR REPLACE PACKAGE XXPLM_AARONTEST001 IS PROCEDURE MAIN(errbuf OUT VARCHAR2, ...
分类:Web程序   时间:2016-03-17 10:48:03    阅读次数:455
libpcap
//函数名称:pcap_t *pcap_open_live(const char *source, int snaplen, int promisc, int to_ms, char *errbuf) //函数功能:获得用于捕获网络数据包的数据包捕获描述字。 //函数位置:pcap.c //函数名称
分类:其他好文   时间:2016-01-28 12:33:30    阅读次数:188
HTML报表日期格式不对 导致报错ORA-01861: 文字与格式字符串不匹配
PROCEDURE MAIN(ERRBUF OUT VARCHAR2, RETCODE OUT VARCHAR2, P_CUSTOMER_ID IN VARCHAR2, P_...
分类:Web程序   时间:2015-06-11 22:52:58    阅读次数:142
14条   1 2 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!