ChinaUnix.net
相关文章推荐:

linux 客户端不断向服务器发送数据

/************************************************************************* Author: Wan Xinshuo Created Time: 2009年04月14日 星期二 11时33分18秒 File Name: server02.c Description: ************************************************************************/ #include #include #include #include #include #include #include #include #include #define MAXLINE 100 #define OPEN_MAX 100 #define L...

by xinshuow - 网络技术文档中心 - 2009-11-06 00:25:09 阅读(1720) 回复(1)

相关讨论

/************************************************************************* Author: Wan Xinshuo Created Time: 2009年04月14日 星期二 11时32分34秒 File Name: server01.c Description: ************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #define BACKLOG 10 // ...

by xinshuow - 网络技术文档中心 - 2009-04-14 11:49:33 阅读(2484) 回复(0)

我下载了一个工具本来就是想监控一下FTP的网络流量 于是我下载了iptraf工具没想到不看不知道一看吓一跳 我发现我内网的计算机几乎都在疯狂的我的FTP服务器的137端口发送数据 如图: 我感觉是受到什么攻击了,求高手给看看!!!!!

by crysiswars - 网络技术 - 2012-08-10 14:21:32 阅读(3487) 回复(7)

ERROR - file: storage_service.c, line: 3946, client ip: 192.168.2.230, pkg length is not correct, invalid file bytes: 25, total body length: 60

by gogogo_501 - 分布式文件系统(FastDFS) - 2013-07-04 15:14:44 阅读(1011) 回复(0)

小弟写了段程序用于本机的/dev/ttyUSB0串口发送数据,开了两个线程,因为不可能写两个程序分别读这个串口,分别用于串口write与read。[code]#include #include #include //read,write #include //open #include #include #define MAX_LINE 1000 void serial_send(int fd){ char *buf = "hello"; int n, len; len = strlen(buf); if( (n=write(fd, ...

by wangjc_strive - C/C++ - 2013-09-05 14:49:57 阅读(3894) 回复(2)
by xzh2002 - 服务器应用 - 2007-07-19 16:57:18 阅读(2724) 回复(5)

在windows下,利用ldap接口可以服务器提交用户验证,既然linux也可以用ldap,那么有没有可能以linux作为客户端windows域服务器提交用户验证呢?

by syy961 - 服务器应用 - 2004-12-29 08:58:18 阅读(2824) 回复(3)

刚刚接触linux不久,是因为Nagios的服务器端是一台linux服务器,现在需要实现从这台服务器各个管理者邮箱发送提醒邮件。 Nagios中关于notify-by-mail 的配置文件是使用 linux的 mail 命令的,因此我去测试 mail -s "service warning" [email]abcd@gmail.com[/email] < test.txt,但是行不通。 目前我登陆linux的用户是root,但在 /var/spool/mail/ 下面的用户只有 nagios 和 company 又测试过 mail -s "service warning"...

by mangolzy - Linux新手园地 - 2014-06-03 21:56:11 阅读(587) 回复(0)

刚刚接触linux不久,是因为Nagios的服务器端是一台linux服务器,现在需要实现从这台服务器各个管理者邮箱发送提醒邮件。 Nagios中关于notify-by-mail 的配置文件是使用 linux的 mail 命令的,因此我去测试 mail -s "service warning" [email]abcd@gmail.com[/email] < test.txt,但是行不通。 目前我登陆linux的用户是root,但在 /var/spool/mail/ 下面的用户只有 nagios 和 company 又测试过 mail -s "service warning"...

by mangolzy - Linux系统管理 - 2014-06-10 08:10:16 阅读(1400) 回复(5)

我在一台linux机器上装了oracle10g的客户端,在另外的一台机器上装了db,现在怎么能用客户端登录到数据库上啊? sqlplus ?

by haishen - Oracle - 2005-12-18 14:30:18 阅读(966) 回复(1)

我在开发板上linux上面 挂入动态模块 片段如下: static struct packet_type lldp_packet_type __read_mostly = { .type = cpu_to_be16(ETH_P_LLDP), .func = lldp_skb_rcv, }; xxx_init { ... dev_add_pack(&lldp_packet_type) ... } static int lldp_skb_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev) { printk("lldp_init->lldp_rcv calls\n"); ...

by song0071000 - 嵌入式开发 - 2013-09-28 23:48:34 阅读(1020) 回复(4)