quagga-0.99.21.tar.gz quagga-0.99.21.tar.gz 路由软件 可以在linux上运行
2021-11-03 21:47:43 2.19MB quagga zebra
1
/* VTY shell main routine. */ int main (int argc, char **argv, char **env) { char *line; int opt; int eval_flag = 0; int boot_flag = 0; char *eval_line = NULL; char *config_file = CONFIG_DIR "/" CONFIG_FILE; if(getenv("VTYSH_CONFIG")) config_file = getenv("VTYSH_CONFIG"); while (1) { opt = getopt_long (argc, argv, "be:c:hv", longopts, 0); if (opt == EOF) break; switch (opt) { case 0: break; case 'b': boot_flag = 1; break; case 'e': eval_flag = 1; eval_line = optarg; break; case 'h': usage (argv[0], 0); break; case 'c': config_file = optarg; break; case 'v': printf("Ver:%s %s\n", __DATE__, __TIME__); exit(0); default: usage (argv[0], 1); break; } } /* Signal and others. */ signal_init (); /* Init config. */ config_init(); /* Init the cmd */ cmd_init(); /* Init the vtysh */ vtysh_init_vty (); /* Install command and node view */ cmd_parse_init(); //TODO load the dynamic so /* sort the node */ cmd_sort_node(); /* If eval mode */ if (eval_flag) { vtysh_execute("enable"); vtysh_execute("config terminal"); exit(vtysh_execute(eval_line)); } /* Boot startup configuration file. */ if (boot_flag) exit(vtysh_boot_config (config_file)); in_show_welcome(); host.config = config_file; vtysh_load_config(config_file); /* Main command loop. */ while ((line = vtysh_readline()) != NULL) vtysh_execute (line); printf ("\n"); exit (0); }
2021-11-03 17:54:52 38KB zebra vtysh
1
斑马打印机控制程序
2021-11-01 18:04:08 160KB 斑马 打印机
1
ZebraDesigner,斑马驱动光盘中的应用软件。
2021-10-28 23:16:59 19.59MB Zebra
1
使用方法参见我的博客https://blog.csdn.net/HorseRoll/article/details/80496091 资源还不错,亲测可用,欢迎大家来下载!
2021-10-26 17:05:53 348KB Zebra打印demoC#.ra
1
编写API的目的,Zebra官方提供的Unicode转化组件FNTHEX32.DLL,是一个非托管组件,托管环境下还需要再封装。 该组件直到现在还未找到对应的64位程序兼容组件,为了解决32位和64位的兼容问题,最后编写开发此API, 此API完全用.net开发,无需考虑兼容性问题,实现与FNTHEX32.DLL相同的效果。 此API改善了FNTHEX32.DLL中的字体问题,支持windows下所有字体。 程序处理思路: 先将文本用GDI+做绘图, 在内存中绘制出文本对应的图形, 然后将图形进行像素点取点处理, 取出每一个像素点,进行灰度处理, 按照0-255的灰度值,进行黑白判断, 此处取了一个中间一点的值,180,作为黑白分解点, 取出的黑白点,按照01组合,每八个像素点组合成一个字节,不满0填充,0代表白色像素点,1代表黑色像素点 将字节转化成对应的16进制字符,完成无压缩数据获取 在无压缩数据的基础上,按照ZPL指令中进行压缩,可以大量缩减字节长度,ZPL压缩参见ZPL协议
2021-10-26 16:51:50 287KB FNTHEX32 ZPL 中文实现
1
Windows下使用VB6.0编写的斑马打印机控制源码,
2021-10-25 14:32:42 1.34MB vb Zebra 斑马打印机 工厂产线源码
1
ZDesigner是斑马条码机最成功及最受用户欢迎的一款标签排版软件.
2021-10-24 20:10:40 24.81MB zebra designer
1
ZebraDesigner 1.0.2,直接安装使用,不需要序列号,注意:不是Pro版。
2021-10-24 20:01:06 9.21MB Zebra Designer 1.0.2
1
Zebra斑马PDA跟Android的对接,内含jar包,对接文档以及源码。Zebra斑马PDA跟Android的对接,内含jar包,对接文档以及源码。
2021-10-24 10:04:38 881KB 斑马PDA PDA ZebraPDA 斑马Android
1