2023年4月6日

摘要: GVariant *value1, *value2, *value3, *value4; value1 = g_variant_new ("y", 200); value2 = g_variant_new ("b", TRUE); value3 = g_variant_new ("d", 37.5) 阅读全文
posted @ 2023-04-06 21:08 lydstory 阅读(47) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <glib.h> #include <stdlib.h> #include <string.h> int main (void) { g_autoptr(GVariant) sessions = NULL; sessions = g_varia 阅读全文
posted @ 2023-04-06 20:47 lydstory 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 在这里需要先科普一下什么是PON(胖),简单的说PON就是无源光纤网络,它分别由以下三个部分组成: 1、OLT(Optical Line Terminal,光线路终端) 2、ODN(Optical Distribution Network,光分配网) 3、ONT(Optical Network Te 阅读全文
posted @ 2023-04-06 18:44 lydstory 阅读(279) 评论(0) 推荐(0) 编辑
摘要: OMCI(光网络单元管理控制接口,即ONU Management and Control Interface)是GPON标准中定义的一种OLT与ONT之间信息交互的协议,用于在GPON网络中OLT对ONT的管理,包括配置管理、故障管理、性能管理和安全管理等 ONU (Optical Network 阅读全文
posted @ 2023-04-06 17:20 lydstory 阅读(21) 评论(0) 推荐(0) 编辑
摘要: EPON与GPON的应用与区别 - 知乎 (zhihu.com) 阅读全文
posted @ 2023-04-06 17:08 lydstory 阅读(12) 评论(0) 推荐(0) 编辑
摘要: GPON,全称Gigabit Passive Optical Network,是一种基于光纤的网络技术(光纤通信技术)。 可以通过单个光纤传输高速数据、语音和视频信号。与传统的基于电缆和铜线的网络技术相比,GPON提供了更高的带宽和速度,同时还具有更好的安全性和可靠性。 在GPON网络中,光纤作为传 阅读全文
posted @ 2023-04-06 17:03 lydstory 阅读(303) 评论(0) 推荐(0) 编辑
摘要: untag 普遍的enternet 报文,普通pc机的网卡可以标识这样的报文进行通讯。 tag 报文结构的变化是源mac 地址和目的mac 地址之后,加上了4bytes 的vlan 信息,也是vlan tag头,一般这样的报文普通pc机无法识别。 802.1Q封装tag 报文帧结构带802.1Q的帧 阅读全文
posted @ 2023-04-06 16:59 lydstory 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 首页-安徽共芯光子科技有限公司 (glosine.com) 阅读全文
posted @ 2023-04-06 16:56 lydstory 阅读(8) 评论(0) 推荐(0) 编辑
摘要: GPON(Gigabit-Capable PON) GPON(Gigabit-Capable PON) GPON(Gigabit-Capable PON) 千兆可用性 阅读全文
posted @ 2023-04-06 16:50 lydstory 阅读(40) 评论(0) 推荐(0) 编辑
摘要: git push --set-upstream origin issue#001 阅读全文
posted @ 2023-04-06 16:11 lydstory 阅读(5) 评论(0) 推荐(0) 编辑
摘要: tp-link无线ap服务器,TP-LINK电信定制版路由器和无线AP面板使用方法_Jacob Piao的博客-CSDN博客 阅读全文
posted @ 2023-04-06 14:28 lydstory 阅读(83) 评论(0) 推荐(0) 编辑
摘要: /* GLIB - Library of useful routines for C programming * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * * This library is 阅读全文
posted @ 2023-04-06 14:11 lydstory 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 这里会简单的说明一下例子中用到的api接口。 GHashTable *g_hash_table_new(GHashFunc hash_func, GEqualFunc key_equal_func); 功能:生成hash表。 参数:hash_func 创建hash值得函数,它为key创建一个hash 阅读全文
posted @ 2023-04-06 13:45 lydstory 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 这里会简单的说明一下例子中用到的api接口。 GHashTable *g_hash_table_new(GHashFunc hash_func, GEqualFunc key_equal_func); 功能:生成hash表。 参数:hash_func 创建hash值得函数,它为key创建一个hash 阅读全文
posted @ 2023-04-06 13:44 lydstory 阅读(173) 评论(0) 推荐(0) 编辑
摘要: glib: linux 编译调用 gcc main.c `pkg-config --libs --cflags glib-2.0` -o main #include <stdio.h> #include <glib.h> #include <stdlib.h> #include <string.h> 阅读全文
posted @ 2023-04-06 13:38 lydstory 阅读(18) 评论(0) 推荐(0) 编辑
摘要: glib g_queue_new glib库队列GQueue介绍-yangyefeng820803-ChinaUnix博客 阅读全文
posted @ 2023-04-06 13:22 lydstory 阅读(5) 评论(0) 推荐(0) 编辑
摘要: GHashTableIter 快速遍历哈希表 g_hash_table_insert 阅读全文
posted @ 2023-04-06 13:16 lydstory 阅读(16) 评论(0) 推荐(0) 编辑
摘要: (141条消息) 使用GVariant实现数据的序列化处理_coroutines的博客-CSDN博客 阅读全文
posted @ 2023-04-06 13:04 lydstory 阅读(28) 评论(0) 推荐(0) 编辑
摘要: GVariant * g_variant_new_boolean (gboolean value) { guchar v = value; return g_variant_new_from_trusted (G_VARIANT_TYPE_BOOLEAN, &v, 1); } typedef str 阅读全文
posted @ 2023-04-06 12:52 lydstory 阅读(25) 评论(0) 推荐(0) 编辑
摘要: PON(Passive Optical Network:无源光纤网络)。 PON(无源光网络)是指(光配线网)中不含有任何电子器件及电子电 阅读全文
posted @ 2023-04-06 11:39 lydstory 阅读(125) 评论(0) 推荐(0) 编辑

导航