• 根据IP头格式写sniff

    我想开始熟悉网络安全最好的方法是通过自己编写一些程序, 来学习有关网络的知识,并且对hacker常用的手法有一定的 了解。(不知大家同意吗?) :-) 所以我整理了一些网络基础知识,放在这里。为什么我们不 写一个自己的sniff呢?让我们从开始一起努力,写些自己的 小...

    2008-04-09 03:59:36

  • 串行通信的基本原理及用MFC实现串口通信编程

    在Windows应用程序的开发中,我们常常需要面临与外围数据源设备通信的问题。计算机和单片机(如MCS-51)都具有串行通信口,可以设计相应的串口通信程序,完成二者之间的数据通信任务。 实际工作中利用串口完成通信任务的时候非常之多。已有一些文章介绍串口编程的文章...

    2008-04-09 03:59:36

  • 在桌面建立快捷方式

    Harold Howe(翻译:抱雪) API提供了一个COM接口:调用 IShellLink 将允许你建立一个快捷方式,要在桌面建立一个快捷方式,只要把这个快捷方式保存到桌面目录就可以了。 下面的示例代码演示怎样建立一个快捷方式,在这个例子里,快捷方式将保存在C: drive。 //--------...

    2008-04-09 03:59:35

  • C语言库函数(H类字母)2

    函数名: hardresume 功 能: 硬件错误处理函数 用 法: void hardresume(int rescode); 程序例: /* This program will trap disk errors and prompt the user for action. */ /* Try running it with no disk in drive A: to invoke its functions */ #include stdio.h #...

    2008-04-09 03:59:35

  • C语言库函数(H类字母)1

    函数名: harderr 功 能: 建立一个硬件错误处理程序 用 法: void harderr(int (*fptr)()); 程序例: /*This program will trap disk errors and prompt the user for action. Try running it with no disk in drive A: to invoke its functions.*/ #include stdio.h #inc...

    2008-04-09 03:59:34

  • UNIX(Linux)系统编程常用库函数说明

    作者:169 时间:2000-02-25.19:07:14 ※ 来源: 绿色兵团 UNIX系统为程序员提供了许多子程序,这些子程序可存取各种安全属性.有些是信息子程序,返回文件属性,实际的和有效的UID,GID等信息.有些子程序可改变文件属性.UID,GID等有些处理口令文件和小组文件,还有些完成加密...

    2008-04-09 03:59:34

  • C语言库函数(G类字母)1

    C语言库函数(G类字母)1 函数名: gcvt 功 能: 把浮点数转换成字符串 用 法: char *gcvt(double value, int ndigit, char *buf); 程序例: #include stdlib.h #include stdio.h int main(void) { char str[25]; double num; int sig = 5; /* significant digits */ /* a r...

    2008-04-09 03:59:33

  • C语言库函数(B类字母)

    C语言库函数(B类字母) 函数名: bar 功 能: 画一个二维条形图 用 法: void far bar(int left, int top, int right, int bottom); 程序例: #include graphics.h #include stdlib.h #include stdio.h #include conio.h int main(void) { /* request auto detection */ int...

    2008-04-09 03:59:32

  • C语言库函数(G类字母)4

    C语言库函数(G类字母)4 函数名: getpass 功 能: 读一个口令 用 法: char *getpass(char *prompt); 程序例: #include conio.h int main(void) { char *password; password = getpass("Input a password:"); cprintf("The password is: %srn", password); return 0; }...

    2008-04-09 03:59:32

  • C语言库函数(F类字母)

    C语言库函数(F类字母) 函数名: fabs 功 能: 返回浮点数的绝对值 用 法: double fabs(double x); 程序例: #include stdio.h #include math.h int main(void) { float number = -1234.0; printf("number: %f absolute value: %fn", number, fabs(number)); return 0; }...

    2008-04-09 03:59:32

2