随笔分类 -  学习中

上一页 1 2 3 4 5 6 7 8 下一页

学习中...
glib gmacros.h
摘要:/* 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 阅读(36) 评论(0) 推荐(0) 编辑

glib g_hash_table_new g_hash_table_new_full
摘要:这里会简单的说明一下例子中用到的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 阅读(240) 评论(0) 推荐(0) 编辑

glib g_hash_table_lookup g_hash_table_remove
摘要:这里会简单的说明一下例子中用到的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 阅读(245) 评论(0) 推荐(0) 编辑

glib 哈希调用
摘要: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 阅读(23) 评论(0) 推荐(0) 编辑

glib g_queue_new
摘要:glib g_queue_new glib库队列GQueue介绍-yangyefeng820803-ChinaUnix博客 阅读全文

posted @ 2023-04-06 13:22 lydstory 阅读(7) 评论(0) 推荐(0) 编辑

glib GHashTableIter
摘要:GHashTableIter 快速遍历哈希表 g_hash_table_insert 阅读全文

posted @ 2023-04-06 13:16 lydstory 阅读(19) 评论(0) 推荐(0) 编辑

使用GVariant实现数据的序列化处理
摘要:(141条消息) 使用GVariant实现数据的序列化处理_coroutines的博客-CSDN博客 阅读全文

posted @ 2023-04-06 13:04 lydstory 阅读(40) 评论(0) 推荐(0) 编辑

glib GVariant
摘要: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 阅读(42) 评论(0) 推荐(0) 编辑

PON(Passive Optical Network
摘要:PON(Passive Optical Network:无源光纤网络)。 PON(无源光网络)是指(光配线网)中不含有任何电子器件及电子电 阅读全文

posted @ 2023-04-06 11:39 lydstory 阅读(193) 评论(0) 推荐(0) 编辑

VLANMode = TAG
摘要:VLANMode = TAG UNTAG 阅读全文

posted @ 2023-04-06 11:00 lydstory 阅读(8) 评论(0) 推荐(0) 编辑

dot1X协议
摘要:dot1X协议,或者叫做802.1X协议,是一种网络接入控制协议。它的特性,就是在局域网接入设备的端口这一级,验证用户身份并控制其访问权限。 所以,它的主要目的是为... 阅读全文

posted @ 2023-04-06 10:56 lydstory 阅读(193) 评论(0) 推荐(0) 编辑

WDS 无线网络
摘要:1、WDS是Wireless Distribution System的简称。 2、就是无线分布式系统,他的功能是在无线应用领域中帮助无线基站与无线基站之间进行联系通讯的系统。 3、WDS是Wireless Distribution System,即无线网络部署延展系统的简称,是指用多个无线网络相互联 阅读全文

posted @ 2023-04-06 10:55 lydstory 阅读(162) 评论(0) 推荐(0) 编辑

增强型桥接模式
摘要:增强型桥接模式 增强型桥接模式 增强型桥接模式 阅读全文

posted @ 2023-04-06 10:16 lydstory 阅读(347) 评论(0) 推荐(0) 编辑

有线无线网卡自动跃点
摘要:无线 1 有线 8 自动跃点 阅读全文

posted @ 2023-04-04 17:15 lydstory 阅读(44) 评论(0) 推荐(0) 编辑

glib gtypes.h
摘要:/* 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-04 15:10 lydstory 阅读(18) 评论(0) 推荐(0) 编辑

dbus-send
摘要:行工具dbus-send ,是freedesktoop提供的dbus包配套的命令客户端工具,可用于发送dbus消息。 GDbus GLib实现的dbus工具。较与 dbus-send,拥有更完整的功能。 dbus有两种消息总线 (message bus):system bus 和 session b 阅读全文

posted @ 2023-04-04 14:53 lydstory 阅读(452) 评论(0) 推荐(0) 编辑

g_main_loop 基础用法
摘要:/* test.c */ int main(int argc, char const *argv[]) { /* 1.创建一个 GMainLoop 结构体对象,作为一个主事件循环 */ GMainLoop *loop = g_main_loop_new(NULL, FALSE); /* 2.添加超时 阅读全文

posted @ 2023-04-04 14:17 lydstory 阅读(474) 评论(0) 推荐(0) 编辑

tftp client升级
摘要: 阅读全文

posted @ 2023-04-04 10:09 lydstory 阅读(11) 评论(0) 推荐(0) 编辑

vscode 远程目录代码编写
摘要:VsCode连接远程服务器并修改文件代码_vscode打开远程服务器文件_一只积极向上的小咸鱼的博客-CSDN博客 阅读全文

posted @ 2023-04-03 13:06 lydstory 阅读(32) 评论(0) 推荐(0) 编辑

Win11右键菜单如何直接默认显示更多选项
摘要:Win11右键菜单如何直接默认显示更多选项 1、首先用鼠标右键点击“开始”按钮(或者按Win+X键),选择点击 “Windows 终端(管理员 2、然后在终端应用程序里粘贴这串代码【reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8 阅读全文

posted @ 2023-04-03 09:41 lydstory 阅读(747) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 下一页

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示