会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
jiexianzhu
博客园
首页
新随笔
联系
订阅
管理
2019年6月13日
Linux系统,无法收到组播消息的问题
摘要: 解决办法: 做以下3个修改 1. /etc/sysctl.conf 文件中的 net.ipv4.conf.all.rp_filter 设置成0 2. sysctl -w net.ipv4.conf.all.rp_filter=0 3. echo "0">/proc/sys/net/ipv4/conf
阅读全文
posted @ 2019-06-13 13:52 jiexianzhu
阅读(6696)
评论(1)
推荐(0)
2019年1月15日
C语言__LINE__实现原理
摘要: 在test.c中写如下代码: 1 #include <stdio.h> 2 3 int main() 4 { 5 printf("line:%d\n", __LINE__); 6 return 0; 7 } 使用gcc编译 gcc -o test test.c 执行 ./test 结果 line:5
阅读全文
posted @ 2019-01-15 21:42 jiexianzhu
阅读(3396)
评论(0)
推荐(0)
公告