├── .gitignore ├── .travis.yml ├── CHANGELOG ├── Dockerfile ├── Makefile ├── README ├── README.md ├── SPECS ├── dot-rpmmacros ├── orig-yuma.spec ├── yuma2.spec └── yuma2all.spec ├── TODO ├── debian ├── 2nd-yuma │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── docs │ ├── postinst │ ├── rules │ ├── shlibs.yuma-shlibs │ └── yuma.install ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── docs ├── orig-yuma │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── docs │ ├── postinst │ ├── rules │ ├── shlibs.yuma-shlibs │ ├── yuma-client.install │ ├── yuma-dev.install │ ├── yuma-server.install │ ├── yuma-shlibs.install │ └── yuma.substvars ├── postinst ├── rules ├── shlibs.yuma-shlibs ├── yuma-dev.install ├── yuma-doc.install └── yuma.install ├── example-modules ├── helloworld │ ├── Makefile.am │ ├── helloworld.c │ └── helloworld.yang └── ietf-interfaces │ ├── Makefile.am │ ├── README │ ├── configure.ac │ └── ietf-interfaces.c ├── libtecla ├── CHANGES ├── INSTALL ├── LICENSE.TERMS ├── Makefile.in ├── Makefile.rules ├── Makefile.stub ├── PORTING ├── README ├── RELEASE.NOTES ├── chrqueue.c ├── chrqueue.h ├── config.guess ├── config.sub ├── configure ├── configure.in ├── cplfile.c ├── cplfile.h ├── cplmatch.c ├── cplmatch.h ├── demo.c ├── demo2.c ├── demo3.c ├── direader.c ├── direader.h ├── enhance.c ├── errmsg.c ├── errmsg.h ├── expand.c ├── expand.h ├── freelist.c ├── freelist.h ├── getline.c ├── getline.h ├── hash.c ├── hash.h ├── history.c ├── history.h ├── homedir.c ├── homedir.h ├── html │ ├── changes.html │ ├── cpl_complete_word.html │ ├── ef_expand_file.html │ ├── enhance.html │ ├── gl_get_line.html │ ├── gl_io_mode.html │ ├── index.html │ ├── libtecla.html │ ├── pca_lookup_file.html │ ├── release.html │ └── tecla.html ├── install-sh ├── ioutil.c ├── ioutil.h ├── keytab.c ├── keytab.h ├── libtecla.h ├── libtecla.map ├── man │ ├── file │ │ └── teclarc.in │ ├── func │ │ ├── cfc_file_start.in │ │ ├── cfc_literal_escapes.in │ │ ├── cfc_set_check_fn.in │ │ ├── cpl_add_completion.in │ │ ├── cpl_complete_word.in │ │ ├── cpl_file_completions.in │ │ ├── cpl_last_error.in │ │ ├── cpl_list_completions.in │ │ ├── cpl_recall_matches.in │ │ ├── cpl_record_error.in │ │ ├── del_CplFileConf.in │ │ ├── del_ExpandFile.in │ │ ├── del_GetLine.in │ │ ├── del_PathCache.in │ │ ├── del_PcaPathConf.in │ │ ├── del_WordCompletion.in │ │ ├── ef_expand_file.in │ │ ├── ef_last_error.in │ │ ├── ef_list_expansions.in │ │ ├── gl_abandon_line.in │ │ ├── gl_bind_keyseq.in │ │ ├── gl_catch_blocked.in │ │ ├── gl_change_terminal.in │ │ ├── gl_clear_history.in │ │ ├── gl_completion_action.in │ │ ├── gl_configure_getline.in │ │ ├── gl_customize_completion.in │ │ ├── gl_display_text.in │ │ ├── gl_echo_mode.in │ │ ├── gl_erase_terminal.in │ │ ├── gl_error_message.in │ │ ├── gl_get_line.in │ │ ├── gl_group_history.in │ │ ├── gl_handle_signal.in │ │ ├── gl_ignore_signal.in │ │ ├── gl_inactivity_timeout.in │ │ ├── gl_io_mode.in │ │ ├── gl_last_signal.in │ │ ├── gl_limit_history.in │ │ ├── gl_list_signals.in │ │ ├── gl_load_history.in │ │ ├── gl_lookup_history.in │ │ ├── gl_normal_io.in │ │ ├── gl_pending_io.in │ │ ├── gl_prompt_style.in │ │ ├── gl_query_char.in │ │ ├── gl_range_of_history.in │ │ ├── gl_raw_io.in │ │ ├── gl_read_char.in │ │ ├── gl_register_action.in │ │ ├── gl_resize_history.in │ │ ├── gl_return_status.in │ │ ├── gl_save_history.in │ │ ├── gl_set_term_size.in │ │ ├── gl_show_history.in │ │ ├── gl_size_of_history.in │ │ ├── gl_state_of_history.in │ │ ├── gl_terminal_size.in │ │ ├── gl_toggle_history.in │ │ ├── gl_trap_signal.in │ │ ├── gl_tty_signals.in │ │ ├── gl_watch_fd.in │ │ ├── libtecla_version.in │ │ ├── new_CplFileConf.in │ │ ├── new_ExpandFile.in │ │ ├── new_GetLine.in │ │ ├── new_PathCache.in │ │ ├── new_PcaPathConf.in │ │ ├── new_WordCompletion.in │ │ ├── pca_last_error.in │ │ ├── pca_lookup_file.in │ │ ├── pca_path_completions.in │ │ ├── pca_scan_path.in │ │ ├── pca_set_check_fn.in │ │ ├── ppc_file_start.in │ │ └── ppc_literal_escapes.in │ ├── libr │ │ └── libtecla.in │ ├── misc │ │ └── tecla.in │ └── prog │ │ └── enhance.in ├── pathutil.c ├── pathutil.h ├── pcache.c ├── stringrp.c ├── stringrp.h ├── strngmem.c ├── strngmem.h ├── update_html ├── update_version └── version.c ├── libtoaster ├── Makefile └── src │ ├── Makefile │ ├── toaster.c │ ├── toaster.c.start │ ├── toaster.h │ └── toaster.h.start └── netconf ├── MIBS ├── AGENTX-MIB ├── DIFFSERV-CONFIG-MIB ├── DIFFSERV-DSCP-TC ├── DIFFSERV-MIB ├── DISMAN-EVENT-MIB ├── DISMAN-SCHEDULE-MIB ├── DISMAN-SCRIPT-MIB ├── DOCS-CABLE-DEVICE-MIB ├── ENTITY-MIB ├── ENTITY-SENSOR-MIB ├── ENTITY-STATE-MIB ├── ENTITY-STATE-TC-MIB ├── EtherLike-MIB ├── HCNUM-TC ├── HOST-RESOURCES-MIB ├── HOST-RESOURCES-TYPES ├── IANA-ADDRESS-FAMILY-NUMBERS-MIB ├── IANA-LANGUAGE-MIB ├── IANA-RTPROTO-MIB ├── IANAifType-MIB ├── IF-INVERTED-STACK-MIB ├── IF-MIB ├── INET-ADDRESS-MIB ├── INTEGRATED-SERVICES-MIB ├── IP-FORWARD-MIB ├── IP-MIB ├── LM-SENSORS-MIB ├── MTA-MIB ├── Makefile ├── NETWORK-SERVICES-MIB ├── NOTIFICATION-LOG-MIB ├── RFC-1215 ├── RFC1155-SMI ├── RFC1213-MIB ├── RMON-MIB ├── SMUX-MIB ├── SNMP-COMMUNITY-MIB ├── SNMP-FRAMEWORK-MIB ├── SNMP-MPD-MIB ├── SNMP-NOTIFICATION-MIB ├── SNMP-PROXY-MIB ├── SNMP-TARGET-MIB ├── SNMP-USER-BASED-SM-MIB ├── SNMP-USM-AES-MIB ├── SNMP-USM-DH-OBJECTS-MIB ├── SNMP-VIEW-BASED-ACM-MIB ├── SNMPv2-CONF ├── SNMPv2-MIB ├── SNMPv2-SMI ├── SNMPv2-TC ├── SNMPv2-TM ├── TCP-MIB ├── TRANSPORT-ADDRESS-MIB └── UDP-MIB ├── Makefile ├── data ├── c_header.txt ├── py_header.txt ├── test.xml ├── test │ └── test.xml └── yangdump-css-contents.txt ├── doc ├── Makefile ├── extra │ ├── AUTHORS │ ├── COPYRIGHT │ ├── README │ ├── yuma-legal-notices.odt │ └── yuma-legal-notices.pdf ├── writer2xhtml_yuma.xml └── yuma_docs │ ├── YumaWorksUsingChromeFonts.ott │ ├── google-fonts.tgz │ ├── html │ └── copy.sh │ ├── index.html │ ├── openyuma-dev-manual.odt │ ├── openyuma-installation-guide.odt │ ├── openyuma-netconfd-manual.odt │ ├── openyuma-quickstart-guide.odt │ ├── openyuma-user-cmn-manual.odt │ ├── openyuma-yangcli-manual.odt │ ├── openyuma-yangdiff-manual.odt │ ├── openyuma-yangdump-manual.odt │ └── server-call-chain.txt ├── etc ├── Makefile ├── netconfd-sample.conf ├── yangcli-sample.conf ├── yangdiff-sample.conf └── yangdump-sample.conf ├── man ├── Makefile ├── make_sil_dir.1 ├── netconf-subsystem.1 ├── netconfd.1 ├── yangcli.1 ├── yangdiff.1 └── yangdump.1 ├── modules ├── Makefile ├── ietf-draft │ └── ietf-direct-must-augment-extension@2015-06-12.yang ├── ietf │ ├── AGENTX-MIB.yang │ ├── DIFFSERV-CONFIG-MIB.yang │ ├── DIFFSERV-DSCP-TC.yang │ ├── DIFFSERV-MIB.yang │ ├── DISMAN-EVENT-MIB.yang │ ├── DISMAN-SCHEDULE-MIB.yang │ ├── DISMAN-SCRIPT-MIB.yang │ ├── ENTITY-MIB.yang │ ├── ENTITY-SENSOR-MIB.yang │ ├── ENTITY-STATE-MIB.yang │ ├── ENTITY-STATE-TC-MIB.yang │ ├── EtherLike-MIB.yang │ ├── HCNUM-TC.yang │ ├── HOST-RESOURCES-MIB.yang │ ├── HOST-RESOURCES-TYPES.yang │ ├── IANA-ADDRESS-FAMILY-NUMBERS-MIB.yang │ ├── IANA-LANGUAGE-MIB.yang │ ├── IANA-RTPROTO-MIB.yang │ ├── IANAifType-MIB.yang │ ├── IF-INVERTED-STACK-MIB.yang │ ├── IF-MIB.yang │ ├── INET-ADDRESS-MIB.yang │ ├── INTEGRATED-SERVICES-MIB.yang │ ├── IP-MIB.yang │ ├── RFC-1215.yang │ ├── RMON-MIB.yang │ ├── SNMP-FRAMEWORK-MIB.yang │ ├── SNMP-MPD-MIB.yang │ ├── SNMP-NOTIFICATION-MIB.yang │ ├── SNMP-TARGET-MIB.yang │ ├── SNMP-USM-AES-MIB.yang │ ├── SNMPv2-MIB.yang │ ├── SNMPv2-TC.yang │ ├── SNMPv2-TM.yang │ ├── TRANSPORT-ADDRESS-MIB.yang │ ├── iana-afn-safi.yang │ ├── iana-crypt-hash.yang │ ├── iana-if-type.yang │ ├── iana-timezones.yang │ ├── ietf-interfaces.yang │ ├── ietf-ip.yang │ ├── ietf-ipfix-psamp.yang │ ├── ietf-ipv4-unicast-routing.yang │ ├── ietf-ipv6-unicast-routing.yang │ ├── ietf-netconf-acm.yang │ ├── ietf-netconf-monitoring.yang │ ├── ietf-netconf-notifications.yang │ ├── ietf-netconf-partial-lock.yang │ ├── ietf-netconf-with-defaults.yang │ ├── ietf-netconf.yang │ ├── ietf-routing.yang │ ├── ietf-snmp-common.yang │ ├── ietf-snmp-community.yang │ ├── ietf-snmp-engine.yang │ ├── ietf-snmp-notification.yang │ ├── ietf-snmp-proxy.yang │ ├── ietf-snmp-target.yang │ ├── ietf-snmp-tls.yang │ ├── ietf-snmp-tsm.yang │ ├── ietf-snmp-usm.yang │ ├── ietf-snmp-vacm.yang │ ├── ietf-snmp.yang │ ├── ietf-system.yang │ ├── nc-notifications.yang │ └── notifications.yang ├── netconfcentral │ ├── netconfd.yang │ ├── toaster.yang │ ├── yangcli.yang │ ├── yangdiff.yang │ ├── yangdump.yang │ ├── yuma-app-common.yang │ ├── yuma-arp.yang │ ├── yuma-interfaces.yang │ ├── yuma-mysession.yang │ ├── yuma-nacm.yang │ ├── yuma-ncx.yang │ ├── yuma-netconf.yang │ ├── yuma-proc.yang │ ├── yuma-system.yang │ ├── yuma-time-filter.yang │ ├── yuma-types.yang │ └── yuma-xsd.yang ├── test │ ├── fail │ │ ├── t13.yang │ │ ├── test1badns.yang │ │ ├── testbadext.yang │ │ ├── testimp.yang │ │ ├── testloops.yang │ │ ├── testmust2.yang │ │ ├── testnest.yang │ │ ├── testnest2.yang │ │ ├── testnest3.yang │ │ ├── testnesttop.yang │ │ └── testunion.yang │ └── pass │ │ ├── augment_bug.yang │ │ ├── augment_interface.yang │ │ ├── examples.yang │ │ ├── negnum.yang │ │ ├── siltest1.yang │ │ ├── siltest2.yang │ │ ├── siltest3.yang │ │ ├── siltest4.yang │ │ ├── siltest5.yang │ │ ├── siltest6.yang │ │ ├── siltest7.yang │ │ ├── t11.yang │ │ ├── t12.yang │ │ ├── t29.yang │ │ ├── t30.yang │ │ ├── t31.yang │ │ ├── t8.yang │ │ ├── t9.yang │ │ ├── test.yang │ │ ├── test1.yang │ │ ├── test10.yang │ │ ├── test1a.yang │ │ ├── test1b.yang │ │ ├── test1c.yang │ │ ├── test2.yang │ │ ├── test3.yang │ │ ├── test3a.yang │ │ ├── test3b.yang │ │ ├── test4.yang │ │ ├── test5.yang │ │ ├── test6.yang │ │ ├── test7.yang │ │ ├── test8.yang │ │ ├── test8a.yang │ │ ├── test8b.yang │ │ ├── test8c.yang │ │ ├── test8d.yang │ │ ├── test9.yang │ │ ├── testaug2.yang │ │ ├── testcommit.yang │ │ ├── testconfig.yang │ │ ├── testcrud.yang │ │ ├── testdec.yang │ │ ├── testdev.yang │ │ ├── testdev_dev.yang │ │ ├── testext.yang │ │ ├── testfalse.yang │ │ ├── testfeature.yang │ │ ├── testgrouping.yang │ │ ├── testgrouping2.yang │ │ ├── testgrouping3.yang │ │ ├── testgrp.yang │ │ ├── testgrp2.yang │ │ ├── testmalloc.yang │ │ ├── testmandatory.yang │ │ ├── testmust.yang │ │ ├── testobsolete.yang │ │ ├── testr1@2009-01-01.yang │ │ ├── testr1@2009-02-02.yang │ │ ├── testr2@2008-01-01.yang │ │ ├── testr2@2009-01-01.yang │ │ ├── testrev.yang │ │ ├── testrev2.yang │ │ ├── testsi.yang │ │ ├── testsim.yang │ │ ├── testuses.yang │ │ ├── trev.yang │ │ ├── tunion.yang │ │ ├── when_bug.yang │ │ └── ytest.yang └── yang │ ├── ietf-inet-types.yang │ ├── ietf-yang-smiv2.yang │ ├── ietf-yang-types.yang │ └── yang-smi.yang ├── scripts ├── start-replay └── test-cancel ├── src ├── Makefile ├── agt │ ├── Makefile │ ├── agt.c │ ├── agt.h │ ├── agt_acm.c │ ├── agt_acm.h │ ├── agt_cap.c │ ├── agt_cap.h │ ├── agt_cb.c │ ├── agt_cb.h │ ├── agt_cfg.c │ ├── agt_cfg.h │ ├── agt_cli.c │ ├── agt_cli.h │ ├── agt_commit_complete.c │ ├── agt_commit_complete.h │ ├── agt_commit_validate.c │ ├── agt_commit_validate.h │ ├── agt_connect.c │ ├── agt_connect.h │ ├── agt_hello.c │ ├── agt_hello.h │ ├── agt_if.c │ ├── agt_if.h │ ├── agt_ncx.c │ ├── agt_ncx.h │ ├── agt_ncxserver.c │ ├── agt_ncxserver.h │ ├── agt_not.c │ ├── agt_not.h │ ├── agt_not_queue_notification_cb.c │ ├── agt_not_queue_notification_cb.h │ ├── agt_plock.c │ ├── agt_plock.h │ ├── agt_proc.c │ ├── agt_proc.h │ ├── agt_rpc.c │ ├── agt_rpc.h │ ├── agt_rpcerr.c │ ├── agt_rpcerr.h │ ├── agt_ses.c │ ├── agt_ses.h │ ├── agt_signal.c │ ├── agt_signal.h │ ├── agt_state.c │ ├── agt_state.h │ ├── agt_sys.c │ ├── agt_sys.h │ ├── agt_time_filter.c │ ├── agt_time_filter.h │ ├── agt_timer.c │ ├── agt_timer.h │ ├── agt_top.c │ ├── agt_top.h │ ├── agt_tree.c │ ├── agt_tree.h │ ├── agt_util.c │ ├── agt_util.h │ ├── agt_val.c │ ├── agt_val.h │ ├── agt_val_parse.c │ ├── agt_val_parse.h │ ├── agt_xml.c │ ├── agt_xml.h │ ├── agt_xpath.c │ ├── agt_xpath.h │ ├── agt_yuma_arp.c │ └── agt_yuma_arp.h ├── check-copyright.py ├── check-len.py ├── mgr │ ├── Makefile │ ├── mgr.c │ ├── mgr.h │ ├── mgr_cap.c │ ├── mgr_cap.h │ ├── mgr_hello.c │ ├── mgr_hello.h │ ├── mgr_io.c │ ├── mgr_io.h │ ├── mgr_load.c │ ├── mgr_load.h │ ├── mgr_not.c │ ├── mgr_not.h │ ├── mgr_rpc.c │ ├── mgr_rpc.h │ ├── mgr_ses.c │ ├── mgr_ses.h │ ├── mgr_signal.c │ ├── mgr_signal.h │ ├── mgr_top.c │ ├── mgr_top.h │ ├── mgr_val_parse.c │ ├── mgr_val_parse.h │ ├── mgr_xml.c │ └── mgr_xml.h ├── ncx │ ├── Makefile │ ├── b64.c │ ├── b64.h │ ├── blob.c │ ├── blob.h │ ├── bobhash.c │ ├── bobhash.h │ ├── cap.c │ ├── cap.h │ ├── cfg.c │ ├── cfg.h │ ├── cli.c │ ├── cli.h │ ├── conf.c │ ├── conf.h │ ├── def_reg.c │ ├── def_reg.h │ ├── dlq.c │ ├── dlq.h │ ├── ext.c │ ├── ext.h │ ├── getcb.h │ ├── grp.c │ ├── grp.h │ ├── help.c │ ├── help.h │ ├── json_wr.c │ ├── json_wr.h │ ├── libncx.h │ ├── log.c │ ├── log.h │ ├── ncx.c │ ├── ncx.h │ ├── ncx_appinfo.c │ ├── ncx_appinfo.h │ ├── ncx_feature.c │ ├── ncx_feature.h │ ├── ncx_list.c │ ├── ncx_list.h │ ├── ncx_num.c │ ├── ncx_num.h │ ├── ncx_str.c │ ├── ncx_str.h │ ├── ncxconst.h │ ├── ncxmod.c │ ├── ncxmod.h │ ├── ncxtypes.h │ ├── obj.c │ ├── obj.h │ ├── obj_help.c │ ├── obj_help.h │ ├── op.c │ ├── op.h │ ├── plock.c │ ├── plock.h │ ├── plock_cb.c │ ├── plock_cb.h │ ├── rpc.c │ ├── rpc.h │ ├── rpc_err.c │ ├── rpc_err.h │ ├── runstack.c │ ├── runstack.h │ ├── send_buff.c │ ├── send_buff.h │ ├── ses.c │ ├── ses.h │ ├── ses_msg.c │ ├── ses_msg.h │ ├── status.c │ ├── status.h │ ├── tk.c │ ├── tk.h │ ├── top.c │ ├── top.h │ ├── tstamp.c │ ├── tstamp.h │ ├── typ.c │ ├── typ.h │ ├── uptime.c │ ├── uptime.h │ ├── val.c │ ├── val.h │ ├── val_get_leafref_targval.c │ ├── val_get_leafref_targval.h │ ├── val_parse.c │ ├── val_parse.h │ ├── val_set_cplxval_obj.c │ ├── val_set_cplxval_obj.h │ ├── val_util.c │ ├── val_util.h │ ├── var.c │ ├── var.h │ ├── version.h │ ├── xml_msg.c │ ├── xml_msg.h │ ├── xml_rd.c │ ├── xml_rd.h │ ├── xml_util.c │ ├── xml_util.h │ ├── xml_val.c │ ├── xml_val.h │ ├── xml_wr.c │ ├── xml_wr.h │ ├── xmlns.c │ ├── xmlns.h │ ├── xpath.c │ ├── xpath.h │ ├── xpath1.c │ ├── xpath1.h │ ├── xpath_wr.c │ ├── xpath_wr.h │ ├── xpath_yang.c │ ├── xpath_yang.h │ ├── yang.c │ ├── yang.h │ ├── yang_ext.c │ ├── yang_ext.h │ ├── yang_grp.c │ ├── yang_grp.h │ ├── yang_obj.c │ ├── yang_obj.h │ ├── yang_parse.c │ ├── yang_parse.h │ ├── yang_typ.c │ ├── yang_typ.h │ ├── yangconst.h │ ├── yin.c │ ├── yin.h │ ├── yinyang.c │ └── yinyang.h ├── netconfd │ ├── Makefile │ └── netconfd.c ├── platform │ ├── curversion.h │ ├── header.txt │ ├── platform.profile │ ├── platform.profile.depend │ ├── procdefs.h │ └── setversion.sh ├── subsys │ ├── Makefile │ └── netconf-subsystem.c ├── yangcli │ ├── Makefile │ ├── README │ ├── yangcli.c │ ├── yangcli.h │ ├── yangcli_alias.c │ ├── yangcli_alias.h │ ├── yangcli_autoload.c │ ├── yangcli_autoload.h │ ├── yangcli_autolock.c │ ├── yangcli_autolock.h │ ├── yangcli_cmd.c │ ├── yangcli_cmd.h │ ├── yangcli_cond.c │ ├── yangcli_cond.h │ ├── yangcli_eval.c │ ├── yangcli_eval.h │ ├── yangcli_list.c │ ├── yangcli_list.h │ ├── yangcli_save.c │ ├── yangcli_save.h │ ├── yangcli_show.c │ ├── yangcli_show.h │ ├── yangcli_tab.c │ ├── yangcli_tab.h │ ├── yangcli_timer.c │ ├── yangcli_timer.h │ ├── yangcli_uservars.c │ ├── yangcli_uservars.h │ ├── yangcli_util.c │ ├── yangcli_util.h │ ├── yangcli_wordexp.c │ └── yangcli_wordexp.h ├── yangdiff │ ├── Makefile │ ├── yangdiff.c │ ├── yangdiff.h │ ├── yangdiff_grp.c │ ├── yangdiff_grp.h │ ├── yangdiff_obj.c │ ├── yangdiff_obj.h │ ├── yangdiff_typ.c │ ├── yangdiff_typ.h │ ├── yangdiff_util.c │ └── yangdiff_util.h ├── yangdump │ ├── Makefile │ ├── wsdl_ex.txt │ └── yangdump.c └── ydump │ ├── Makefile │ ├── c.c │ ├── c.h │ ├── c_util.c │ ├── c_util.h │ ├── cyang.c │ ├── cyang.h │ ├── h.c │ ├── h.h │ ├── html.c │ ├── html.h │ ├── py_util.c │ ├── py_util.h │ ├── sql.c │ ├── sql.h │ ├── tg2.c │ ├── tg2.h │ ├── xsd.c │ ├── xsd.h │ ├── xsd_typ.c │ ├── xsd_typ.h │ ├── xsd_util.c │ ├── xsd_util.h │ ├── xsd_yang.c │ ├── xsd_yang.h │ ├── yangdump.h │ ├── yangdump_util.c │ ├── yangdump_util.h │ ├── yangstats.c │ ├── yangstats.h │ ├── yangyin.c │ ├── yangyin.h │ ├── ydump.c │ └── ydump.h ├── test ├── Doxyfile ├── README.TXT ├── Yuma-TestHarness.pdf ├── integ-tests │ ├── Makefile │ ├── alltests.py │ ├── configure-yuma-integtest.h │ ├── default-none-running.cpp │ ├── default-none-running.mk │ ├── define-yuma-integtest-global-fixture.h │ ├── device-edit-candidate.cpp │ ├── device-edit-candidate.mk │ ├── device-edit-running.cpp │ ├── device-edit-running.mk │ ├── discard-changes.cpp │ ├── discard-changes.mk │ ├── lock-load-candidate.cpp │ ├── lock-load-candidate.mk │ ├── lock-load-running.cpp │ ├── lock-load-running.mk │ ├── simple-edit-candidate.cpp │ ├── simple-edit-candidate.mk │ ├── simple-edit-running.cpp │ ├── simple-edit-running.mk │ ├── simple-edit-startup-false.cpp │ ├── simple-edit-startup-false.mk │ ├── simple-edit-startup-true.cpp │ ├── simple-edit-startup-true.mk │ ├── simple-yang.cpp │ ├── simple-yang.mk │ ├── state-edit-candidate.cpp │ ├── state-edit-candidate.mk │ ├── state-edit-running.cpp │ ├── state-edit-running.mk │ └── test2.yang ├── lib │ └── Makefile ├── make-doxygen.sh ├── make-rules │ ├── agt-sources.mk │ ├── agt.mk │ ├── common-rules.mk │ ├── common.mk │ ├── ncx-sources.mk │ └── ncx.mk ├── modules │ ├── build-sil │ │ ├── Makefile │ │ ├── device_test │ │ │ ├── Makefile │ │ │ ├── device_test.cpp │ │ │ ├── device_test.h │ │ │ └── make-sil.sh │ │ ├── simple_list_test │ │ │ ├── Makefile │ │ │ ├── make-sil.sh │ │ │ ├── simple_list_test.c │ │ │ ├── simple_list_test.cpp │ │ │ └── simple_list_test.h │ │ └── simple_yang_test │ │ │ ├── Makefile │ │ │ ├── make-sil.sh │ │ │ ├── simple_yang_test.c │ │ │ ├── simple_yang_test.cpp │ │ │ └── simple_yang_test.h │ └── yang │ │ ├── device_test.yang │ │ ├── simple_list_test.yang │ │ └── simple_yang_test.yang ├── stubs │ ├── agt │ │ └── agt_ncxserver.cpp │ └── ncx │ │ └── send_buff.cpp ├── subsys-test │ └── ncx-init │ │ ├── Makefile │ │ └── ncx-init-test.cpp ├── support │ ├── callbacks │ │ ├── abstract-cb-checker-factory.h │ │ ├── callback-checker.cpp │ │ ├── callback-checker.h │ │ ├── candidate-cb-checker.cpp │ │ ├── candidate-cb-checker.h │ │ ├── integ-cb-checker-factory.cpp │ │ ├── integ-cb-checker-factory.h │ │ ├── running-cb-checker.cpp │ │ ├── running-cb-checker.h │ │ ├── sil-callback-controller.cpp │ │ ├── sil-callback-controller.h │ │ ├── sil-callback-log.cpp │ │ ├── sil-callback-log.h │ │ ├── system-cb-checker-factory.cpp │ │ ├── system-cb-checker-factory.h │ │ ├── system-cb-checker.cpp │ │ └── system-cb-checker.h │ ├── checkers │ │ ├── checker-group.cpp │ │ ├── checker-group.h │ │ ├── log-entry-presence-checkers.cpp │ │ ├── log-entry-presence-checkers.h │ │ ├── string-presence-checkers.cpp │ │ ├── string-presence-checkers.h │ │ └── xml-content-checker.h │ ├── db-models │ │ ├── db-check-utils.h │ │ ├── device-test-db-debug.cpp │ │ ├── device-test-db-debug.h │ │ ├── device-test-db.cpp │ │ ├── device-test-db.h │ │ ├── state-data-test-db.cpp │ │ └── state-data-test-db.h │ ├── fixtures │ │ ├── abstract-fixture-helper-factory.h │ │ ├── abstract-fixture-helper.h │ │ ├── abstract-global-fixture.cpp │ │ ├── abstract-global-fixture.h │ │ ├── base-suite-fixture.cpp │ │ ├── base-suite-fixture.h │ │ ├── device-get-module-fixture.cpp │ │ ├── device-get-module-fixture.h │ │ ├── device-module-common-fixture.cpp │ │ ├── device-module-common-fixture.h │ │ ├── device-module-fixture.cpp │ │ ├── device-module-fixture.h │ │ ├── integ-fixture-helper-factory.cpp │ │ ├── integ-fixture-helper-factory.h │ │ ├── integ-fixture-helper.cpp │ │ ├── integ-fixture-helper.h │ │ ├── integ-test-fixture.h │ │ ├── integ-test-fixture.inl │ │ ├── query-suite-fixture.cpp │ │ ├── query-suite-fixture.h │ │ ├── simple-container-module-fixture.cpp │ │ ├── simple-container-module-fixture.h │ │ ├── simple-yang-fixture.cpp │ │ ├── simple-yang-fixture.h │ │ ├── spoofed-args.h │ │ ├── state-data-module-common-fixture.cpp │ │ ├── state-data-module-common-fixture.h │ │ ├── state-get-module-fixture.cpp │ │ ├── state-get-module-fixture.h │ │ ├── system-fixture-helper-factory.cpp │ │ ├── system-fixture-helper-factory.h │ │ ├── system-fixture-helper.cpp │ │ ├── system-fixture-helper.h │ │ ├── system-test-fixture.h │ │ ├── system-test-fixture.inl │ │ ├── test-context.cpp │ │ └── test-context.h │ ├── integ-support-sources.mk │ ├── integ-support.mk │ ├── misc-util │ │ ├── array-deleter.h │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── cpp-unit-op-formatter.cpp │ │ ├── cpp-unit-op-formatter.h │ │ ├── log-utils.cpp │ │ ├── log-utils.h │ │ ├── ptree-utils.cpp │ │ └── ptree-utils.h │ ├── msg-util │ │ ├── NCMessageBuilder.cpp │ │ ├── NCMessageBuilder.h │ │ ├── state-data-query-builder.cpp │ │ ├── state-data-query-builder.h │ │ ├── xpo-query-builder.cpp │ │ └── xpo-query-builder.h │ ├── nc-query-util │ │ ├── nc-base-query-test-engine.cpp │ │ ├── nc-base-query-test-engine.h │ │ ├── nc-default-operation-config.cpp │ │ ├── nc-default-operation-config.h │ │ ├── nc-query-test-engine.cpp │ │ ├── nc-query-test-engine.h │ │ ├── nc-query-utils.cpp │ │ ├── nc-query-utils.h │ │ ├── nc-strings.cpp │ │ ├── nc-strings.h │ │ ├── yuma-op-policies.cpp │ │ └── yuma-op-policies.h │ ├── nc-session │ │ ├── abstract-nc-session-factory.h │ │ ├── abstract-nc-session.cpp │ │ ├── abstract-nc-session.h │ │ ├── remote-nc-session-factory.cpp │ │ ├── remote-nc-session-factory.h │ │ ├── remote-nc-session.cpp │ │ ├── remote-nc-session.h │ │ ├── spoof-nc-session-factory.cpp │ │ ├── spoof-nc-session-factory.h │ │ ├── spoof-nc-session.cpp │ │ ├── spoof-nc-session.h │ │ ├── sys-test-nc-session-base.cpp │ │ └── sys-test-nc-session-base.h │ ├── support-sources.mk │ ├── support.mk │ ├── sys-support-sources.mk │ └── sys-support.mk ├── sys-test │ ├── Makefile │ ├── all-candidate.py │ ├── all-running.py │ ├── configure-env.py │ ├── configure-yuma-systest.h │ ├── define-yuma-systest-global-fixture.h │ ├── device-edit-candidate.cpp │ ├── device-edit-candidate.mk │ ├── device-edit-running.cpp │ ├── device-edit-running.mk │ ├── lock-load-candidate.cpp │ ├── lock-load-candidate.mk │ ├── lock-load-running.cpp │ ├── lock-load-running.mk │ ├── shutdown.cpp │ ├── shutdown.mk │ ├── simple-edit-candidate.cpp │ ├── simple-edit-candidate.mk │ ├── simple-edit-running.cpp │ └── simple-edit-running.mk ├── test-suites │ ├── common │ │ ├── callback-failures-tests.cpp │ │ ├── db-lock-test-suite-candidate.cpp │ │ ├── db-lock-test-suite-common.cpp │ │ ├── db-lock-test-suite-running.cpp │ │ ├── default-none-tests.cpp │ │ ├── device-tests-create.cpp │ │ ├── device-tests-delete.cpp │ │ ├── device-tests-get.cpp │ │ ├── device-tests-merge.cpp │ │ ├── device-tests-misc.cpp │ │ ├── device-tests-replace.cpp │ │ ├── discard-changes-tests.cpp │ │ ├── module-load-test-suite.cpp │ │ ├── simple-choice-tests.cpp │ │ ├── simple-edit-tests-candidate.cpp │ │ ├── simple-edit-tests-startup.cpp │ │ ├── simple-edit-tests-validate.cpp │ │ ├── simple-edit-tests.cpp │ │ ├── simple-must-tests.cpp │ │ ├── startup-delete-config-tests.cpp │ │ └── state-data-tests-get.cpp │ ├── integ │ │ ├── base-64-tests.cpp │ │ ├── test_boost_unit_test_framework.cpp │ │ └── test_yangcli_wordex.c │ └── system │ │ ├── my-session-tests.cpp │ │ ├── shutdown-tests.cpp │ │ └── simple-edit-tests-confirmed-commit.cpp ├── utils │ └── sort_undefs.py └── ydump-test │ └── ydump-test.py └── util ├── Makefile ├── README.fedora ├── README.ubuntu ├── dot-svnignore ├── dot-svnignore-tecla ├── gitversion ├── make-src-tarball.sh ├── make-svn-src-tarball.sh ├── make-tarball.sh ├── make_sil_dir ├── makefile-top.sil ├── makefile.sil ├── prep-deb-tree.sh ├── prep-deb.sh ├── prep-rpm.sh └── rename_yumadebs.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | debian/changelog -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/README.md -------------------------------------------------------------------------------- /SPECS/dot-rpmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/SPECS/dot-rpmmacros -------------------------------------------------------------------------------- /SPECS/orig-yuma.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/SPECS/orig-yuma.spec -------------------------------------------------------------------------------- /SPECS/yuma2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/SPECS/yuma2.spec -------------------------------------------------------------------------------- /SPECS/yuma2all.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/SPECS/yuma2all.spec -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/TODO -------------------------------------------------------------------------------- /debian/2nd-yuma/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/2nd-yuma/changelog -------------------------------------------------------------------------------- /debian/2nd-yuma/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/2nd-yuma/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/2nd-yuma/control -------------------------------------------------------------------------------- /debian/2nd-yuma/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/2nd-yuma/copyright -------------------------------------------------------------------------------- /debian/2nd-yuma/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/2nd-yuma/dirs -------------------------------------------------------------------------------- /debian/2nd-yuma/docs: -------------------------------------------------------------------------------- 1 | /usr/share/doc/yuma/* 2 | -------------------------------------------------------------------------------- /debian/2nd-yuma/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/2nd-yuma/postinst -------------------------------------------------------------------------------- /debian/2nd-yuma/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/2nd-yuma/rules -------------------------------------------------------------------------------- /debian/2nd-yuma/shlibs.yuma-shlibs: -------------------------------------------------------------------------------- 1 | libxml2 (>2.7.5) libc (>=6) 2 | -------------------------------------------------------------------------------- /debian/2nd-yuma/yuma.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/2nd-yuma/yuma.install -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/dirs -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | /usr/share/doc/yuma/* 2 | -------------------------------------------------------------------------------- /debian/orig-yuma/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/changelog -------------------------------------------------------------------------------- /debian/orig-yuma/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/orig-yuma/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/control -------------------------------------------------------------------------------- /debian/orig-yuma/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/copyright -------------------------------------------------------------------------------- /debian/orig-yuma/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/dirs -------------------------------------------------------------------------------- /debian/orig-yuma/docs: -------------------------------------------------------------------------------- 1 | /usr/share/doc/yuma/* 2 | -------------------------------------------------------------------------------- /debian/orig-yuma/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/postinst -------------------------------------------------------------------------------- /debian/orig-yuma/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/rules -------------------------------------------------------------------------------- /debian/orig-yuma/shlibs.yuma-shlibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/shlibs.yuma-shlibs -------------------------------------------------------------------------------- /debian/orig-yuma/yuma-client.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/yuma-client.install -------------------------------------------------------------------------------- /debian/orig-yuma/yuma-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/yuma-dev.install -------------------------------------------------------------------------------- /debian/orig-yuma/yuma-server.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/yuma-server.install -------------------------------------------------------------------------------- /debian/orig-yuma/yuma-shlibs.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/yuma-shlibs.install -------------------------------------------------------------------------------- /debian/orig-yuma/yuma.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/orig-yuma/yuma.substvars -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/shlibs.yuma-shlibs: -------------------------------------------------------------------------------- 1 | libxml2 (>2.7.5) libc (>=6) 2 | -------------------------------------------------------------------------------- /debian/yuma-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/yuma-dev.install -------------------------------------------------------------------------------- /debian/yuma-doc.install: -------------------------------------------------------------------------------- 1 | usr/share/doc/yuma/ 2 | 3 | -------------------------------------------------------------------------------- /debian/yuma.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/debian/yuma.install -------------------------------------------------------------------------------- /example-modules/helloworld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/example-modules/helloworld/Makefile.am -------------------------------------------------------------------------------- /example-modules/helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/example-modules/helloworld/helloworld.c -------------------------------------------------------------------------------- /example-modules/helloworld/helloworld.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/example-modules/helloworld/helloworld.yang -------------------------------------------------------------------------------- /example-modules/ietf-interfaces/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/example-modules/ietf-interfaces/Makefile.am -------------------------------------------------------------------------------- /example-modules/ietf-interfaces/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/example-modules/ietf-interfaces/README -------------------------------------------------------------------------------- /example-modules/ietf-interfaces/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/example-modules/ietf-interfaces/configure.ac -------------------------------------------------------------------------------- /example-modules/ietf-interfaces/ietf-interfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/example-modules/ietf-interfaces/ietf-interfaces.c -------------------------------------------------------------------------------- /libtecla/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/CHANGES -------------------------------------------------------------------------------- /libtecla/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/INSTALL -------------------------------------------------------------------------------- /libtecla/LICENSE.TERMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/LICENSE.TERMS -------------------------------------------------------------------------------- /libtecla/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/Makefile.in -------------------------------------------------------------------------------- /libtecla/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/Makefile.rules -------------------------------------------------------------------------------- /libtecla/Makefile.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/Makefile.stub -------------------------------------------------------------------------------- /libtecla/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/PORTING -------------------------------------------------------------------------------- /libtecla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/README -------------------------------------------------------------------------------- /libtecla/RELEASE.NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/RELEASE.NOTES -------------------------------------------------------------------------------- /libtecla/chrqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/chrqueue.c -------------------------------------------------------------------------------- /libtecla/chrqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/chrqueue.h -------------------------------------------------------------------------------- /libtecla/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/config.guess -------------------------------------------------------------------------------- /libtecla/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/config.sub -------------------------------------------------------------------------------- /libtecla/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/configure -------------------------------------------------------------------------------- /libtecla/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/configure.in -------------------------------------------------------------------------------- /libtecla/cplfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/cplfile.c -------------------------------------------------------------------------------- /libtecla/cplfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/cplfile.h -------------------------------------------------------------------------------- /libtecla/cplmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/cplmatch.c -------------------------------------------------------------------------------- /libtecla/cplmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/cplmatch.h -------------------------------------------------------------------------------- /libtecla/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/demo.c -------------------------------------------------------------------------------- /libtecla/demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/demo2.c -------------------------------------------------------------------------------- /libtecla/demo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/demo3.c -------------------------------------------------------------------------------- /libtecla/direader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/direader.c -------------------------------------------------------------------------------- /libtecla/direader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/direader.h -------------------------------------------------------------------------------- /libtecla/enhance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/enhance.c -------------------------------------------------------------------------------- /libtecla/errmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/errmsg.c -------------------------------------------------------------------------------- /libtecla/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/errmsg.h -------------------------------------------------------------------------------- /libtecla/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/expand.c -------------------------------------------------------------------------------- /libtecla/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/expand.h -------------------------------------------------------------------------------- /libtecla/freelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/freelist.c -------------------------------------------------------------------------------- /libtecla/freelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/freelist.h -------------------------------------------------------------------------------- /libtecla/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/getline.c -------------------------------------------------------------------------------- /libtecla/getline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/getline.h -------------------------------------------------------------------------------- /libtecla/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/hash.c -------------------------------------------------------------------------------- /libtecla/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/hash.h -------------------------------------------------------------------------------- /libtecla/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/history.c -------------------------------------------------------------------------------- /libtecla/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/history.h -------------------------------------------------------------------------------- /libtecla/homedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/homedir.c -------------------------------------------------------------------------------- /libtecla/homedir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/homedir.h -------------------------------------------------------------------------------- /libtecla/html/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/changes.html -------------------------------------------------------------------------------- /libtecla/html/cpl_complete_word.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/cpl_complete_word.html -------------------------------------------------------------------------------- /libtecla/html/ef_expand_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/ef_expand_file.html -------------------------------------------------------------------------------- /libtecla/html/enhance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/enhance.html -------------------------------------------------------------------------------- /libtecla/html/gl_get_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/gl_get_line.html -------------------------------------------------------------------------------- /libtecla/html/gl_io_mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/gl_io_mode.html -------------------------------------------------------------------------------- /libtecla/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/index.html -------------------------------------------------------------------------------- /libtecla/html/libtecla.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/libtecla.html -------------------------------------------------------------------------------- /libtecla/html/pca_lookup_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/pca_lookup_file.html -------------------------------------------------------------------------------- /libtecla/html/release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/release.html -------------------------------------------------------------------------------- /libtecla/html/tecla.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/html/tecla.html -------------------------------------------------------------------------------- /libtecla/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/install-sh -------------------------------------------------------------------------------- /libtecla/ioutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/ioutil.c -------------------------------------------------------------------------------- /libtecla/ioutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/ioutil.h -------------------------------------------------------------------------------- /libtecla/keytab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/keytab.c -------------------------------------------------------------------------------- /libtecla/keytab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/keytab.h -------------------------------------------------------------------------------- /libtecla/libtecla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/libtecla.h -------------------------------------------------------------------------------- /libtecla/libtecla.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/libtecla.map -------------------------------------------------------------------------------- /libtecla/man/file/teclarc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/file/teclarc.in -------------------------------------------------------------------------------- /libtecla/man/func/cfc_file_start.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cfc_file_start.in -------------------------------------------------------------------------------- /libtecla/man/func/cfc_literal_escapes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cfc_literal_escapes.in -------------------------------------------------------------------------------- /libtecla/man/func/cfc_set_check_fn.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cfc_set_check_fn.in -------------------------------------------------------------------------------- /libtecla/man/func/cpl_add_completion.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cpl_add_completion.in -------------------------------------------------------------------------------- /libtecla/man/func/cpl_complete_word.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cpl_complete_word.in -------------------------------------------------------------------------------- /libtecla/man/func/cpl_file_completions.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cpl_file_completions.in -------------------------------------------------------------------------------- /libtecla/man/func/cpl_last_error.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cpl_last_error.in -------------------------------------------------------------------------------- /libtecla/man/func/cpl_list_completions.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cpl_list_completions.in -------------------------------------------------------------------------------- /libtecla/man/func/cpl_recall_matches.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cpl_recall_matches.in -------------------------------------------------------------------------------- /libtecla/man/func/cpl_record_error.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/cpl_record_error.in -------------------------------------------------------------------------------- /libtecla/man/func/del_CplFileConf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/del_CplFileConf.in -------------------------------------------------------------------------------- /libtecla/man/func/del_ExpandFile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/del_ExpandFile.in -------------------------------------------------------------------------------- /libtecla/man/func/del_GetLine.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/del_GetLine.in -------------------------------------------------------------------------------- /libtecla/man/func/del_PathCache.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/del_PathCache.in -------------------------------------------------------------------------------- /libtecla/man/func/del_PcaPathConf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/del_PcaPathConf.in -------------------------------------------------------------------------------- /libtecla/man/func/del_WordCompletion.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/del_WordCompletion.in -------------------------------------------------------------------------------- /libtecla/man/func/ef_expand_file.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/ef_expand_file.in -------------------------------------------------------------------------------- /libtecla/man/func/ef_last_error.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/ef_last_error.in -------------------------------------------------------------------------------- /libtecla/man/func/ef_list_expansions.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/ef_list_expansions.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_abandon_line.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_abandon_line.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_bind_keyseq.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_bind_keyseq.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_catch_blocked.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_catch_blocked.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_change_terminal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_change_terminal.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_clear_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_clear_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_completion_action.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_completion_action.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_configure_getline.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_configure_getline.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_customize_completion.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_customize_completion.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_display_text.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_display_text.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_echo_mode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_echo_mode.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_erase_terminal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_erase_terminal.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_error_message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_error_message.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_get_line.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_get_line.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_group_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_group_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_handle_signal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_handle_signal.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_ignore_signal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_ignore_signal.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_inactivity_timeout.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_inactivity_timeout.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_io_mode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_io_mode.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_last_signal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_last_signal.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_limit_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_limit_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_list_signals.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_list_signals.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_load_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_load_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_lookup_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_lookup_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_normal_io.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_normal_io.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_pending_io.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_pending_io.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_prompt_style.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_prompt_style.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_query_char.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_query_char.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_range_of_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_range_of_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_raw_io.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_raw_io.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_read_char.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_read_char.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_register_action.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_register_action.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_resize_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_resize_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_return_status.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_return_status.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_save_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_save_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_set_term_size.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_set_term_size.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_show_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_show_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_size_of_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_size_of_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_state_of_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_state_of_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_terminal_size.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_terminal_size.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_toggle_history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_toggle_history.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_trap_signal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_trap_signal.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_tty_signals.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_tty_signals.in -------------------------------------------------------------------------------- /libtecla/man/func/gl_watch_fd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/gl_watch_fd.in -------------------------------------------------------------------------------- /libtecla/man/func/libtecla_version.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/libtecla_version.in -------------------------------------------------------------------------------- /libtecla/man/func/new_CplFileConf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/new_CplFileConf.in -------------------------------------------------------------------------------- /libtecla/man/func/new_ExpandFile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/new_ExpandFile.in -------------------------------------------------------------------------------- /libtecla/man/func/new_GetLine.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/new_GetLine.in -------------------------------------------------------------------------------- /libtecla/man/func/new_PathCache.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/new_PathCache.in -------------------------------------------------------------------------------- /libtecla/man/func/new_PcaPathConf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/new_PcaPathConf.in -------------------------------------------------------------------------------- /libtecla/man/func/new_WordCompletion.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/new_WordCompletion.in -------------------------------------------------------------------------------- /libtecla/man/func/pca_last_error.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/pca_last_error.in -------------------------------------------------------------------------------- /libtecla/man/func/pca_lookup_file.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/pca_lookup_file.in -------------------------------------------------------------------------------- /libtecla/man/func/pca_path_completions.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/pca_path_completions.in -------------------------------------------------------------------------------- /libtecla/man/func/pca_scan_path.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/pca_scan_path.in -------------------------------------------------------------------------------- /libtecla/man/func/pca_set_check_fn.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/pca_set_check_fn.in -------------------------------------------------------------------------------- /libtecla/man/func/ppc_file_start.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/ppc_file_start.in -------------------------------------------------------------------------------- /libtecla/man/func/ppc_literal_escapes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/func/ppc_literal_escapes.in -------------------------------------------------------------------------------- /libtecla/man/libr/libtecla.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/libr/libtecla.in -------------------------------------------------------------------------------- /libtecla/man/misc/tecla.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/misc/tecla.in -------------------------------------------------------------------------------- /libtecla/man/prog/enhance.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/man/prog/enhance.in -------------------------------------------------------------------------------- /libtecla/pathutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/pathutil.c -------------------------------------------------------------------------------- /libtecla/pathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/pathutil.h -------------------------------------------------------------------------------- /libtecla/pcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/pcache.c -------------------------------------------------------------------------------- /libtecla/stringrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/stringrp.c -------------------------------------------------------------------------------- /libtecla/stringrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/stringrp.h -------------------------------------------------------------------------------- /libtecla/strngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/strngmem.c -------------------------------------------------------------------------------- /libtecla/strngmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/strngmem.h -------------------------------------------------------------------------------- /libtecla/update_html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/update_html -------------------------------------------------------------------------------- /libtecla/update_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/update_version -------------------------------------------------------------------------------- /libtecla/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtecla/version.c -------------------------------------------------------------------------------- /libtoaster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtoaster/Makefile -------------------------------------------------------------------------------- /libtoaster/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtoaster/src/Makefile -------------------------------------------------------------------------------- /libtoaster/src/toaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtoaster/src/toaster.c -------------------------------------------------------------------------------- /libtoaster/src/toaster.c.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtoaster/src/toaster.c.start -------------------------------------------------------------------------------- /libtoaster/src/toaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtoaster/src/toaster.h -------------------------------------------------------------------------------- /libtoaster/src/toaster.h.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/libtoaster/src/toaster.h.start -------------------------------------------------------------------------------- /netconf/MIBS/AGENTX-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/AGENTX-MIB -------------------------------------------------------------------------------- /netconf/MIBS/DIFFSERV-CONFIG-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/DIFFSERV-CONFIG-MIB -------------------------------------------------------------------------------- /netconf/MIBS/DIFFSERV-DSCP-TC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/DIFFSERV-DSCP-TC -------------------------------------------------------------------------------- /netconf/MIBS/DIFFSERV-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/DIFFSERV-MIB -------------------------------------------------------------------------------- /netconf/MIBS/DISMAN-EVENT-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/DISMAN-EVENT-MIB -------------------------------------------------------------------------------- /netconf/MIBS/DISMAN-SCHEDULE-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/DISMAN-SCHEDULE-MIB -------------------------------------------------------------------------------- /netconf/MIBS/DISMAN-SCRIPT-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/DISMAN-SCRIPT-MIB -------------------------------------------------------------------------------- /netconf/MIBS/DOCS-CABLE-DEVICE-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/DOCS-CABLE-DEVICE-MIB -------------------------------------------------------------------------------- /netconf/MIBS/ENTITY-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/ENTITY-MIB -------------------------------------------------------------------------------- /netconf/MIBS/ENTITY-SENSOR-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/ENTITY-SENSOR-MIB -------------------------------------------------------------------------------- /netconf/MIBS/ENTITY-STATE-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/ENTITY-STATE-MIB -------------------------------------------------------------------------------- /netconf/MIBS/ENTITY-STATE-TC-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/ENTITY-STATE-TC-MIB -------------------------------------------------------------------------------- /netconf/MIBS/EtherLike-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/EtherLike-MIB -------------------------------------------------------------------------------- /netconf/MIBS/HCNUM-TC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/HCNUM-TC -------------------------------------------------------------------------------- /netconf/MIBS/HOST-RESOURCES-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/HOST-RESOURCES-MIB -------------------------------------------------------------------------------- /netconf/MIBS/HOST-RESOURCES-TYPES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/HOST-RESOURCES-TYPES -------------------------------------------------------------------------------- /netconf/MIBS/IANA-ADDRESS-FAMILY-NUMBERS-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IANA-ADDRESS-FAMILY-NUMBERS-MIB -------------------------------------------------------------------------------- /netconf/MIBS/IANA-LANGUAGE-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IANA-LANGUAGE-MIB -------------------------------------------------------------------------------- /netconf/MIBS/IANA-RTPROTO-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IANA-RTPROTO-MIB -------------------------------------------------------------------------------- /netconf/MIBS/IANAifType-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IANAifType-MIB -------------------------------------------------------------------------------- /netconf/MIBS/IF-INVERTED-STACK-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IF-INVERTED-STACK-MIB -------------------------------------------------------------------------------- /netconf/MIBS/IF-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IF-MIB -------------------------------------------------------------------------------- /netconf/MIBS/INET-ADDRESS-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/INET-ADDRESS-MIB -------------------------------------------------------------------------------- /netconf/MIBS/INTEGRATED-SERVICES-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/INTEGRATED-SERVICES-MIB -------------------------------------------------------------------------------- /netconf/MIBS/IP-FORWARD-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IP-FORWARD-MIB -------------------------------------------------------------------------------- /netconf/MIBS/IP-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/IP-MIB -------------------------------------------------------------------------------- /netconf/MIBS/LM-SENSORS-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/LM-SENSORS-MIB -------------------------------------------------------------------------------- /netconf/MIBS/MTA-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/MTA-MIB -------------------------------------------------------------------------------- /netconf/MIBS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/Makefile -------------------------------------------------------------------------------- /netconf/MIBS/NETWORK-SERVICES-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/NETWORK-SERVICES-MIB -------------------------------------------------------------------------------- /netconf/MIBS/NOTIFICATION-LOG-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/NOTIFICATION-LOG-MIB -------------------------------------------------------------------------------- /netconf/MIBS/RFC-1215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/RFC-1215 -------------------------------------------------------------------------------- /netconf/MIBS/RFC1155-SMI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/RFC1155-SMI -------------------------------------------------------------------------------- /netconf/MIBS/RFC1213-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/RFC1213-MIB -------------------------------------------------------------------------------- /netconf/MIBS/RMON-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/RMON-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SMUX-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SMUX-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-COMMUNITY-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-COMMUNITY-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-FRAMEWORK-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-FRAMEWORK-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-MPD-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-MPD-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-NOTIFICATION-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-NOTIFICATION-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-PROXY-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-PROXY-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-TARGET-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-TARGET-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-USER-BASED-SM-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-USER-BASED-SM-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-USM-AES-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-USM-AES-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-USM-DH-OBJECTS-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-USM-DH-OBJECTS-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMP-VIEW-BASED-ACM-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMP-VIEW-BASED-ACM-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMPv2-CONF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMPv2-CONF -------------------------------------------------------------------------------- /netconf/MIBS/SNMPv2-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMPv2-MIB -------------------------------------------------------------------------------- /netconf/MIBS/SNMPv2-SMI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMPv2-SMI -------------------------------------------------------------------------------- /netconf/MIBS/SNMPv2-TC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMPv2-TC -------------------------------------------------------------------------------- /netconf/MIBS/SNMPv2-TM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/SNMPv2-TM -------------------------------------------------------------------------------- /netconf/MIBS/TCP-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/TCP-MIB -------------------------------------------------------------------------------- /netconf/MIBS/TRANSPORT-ADDRESS-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/TRANSPORT-ADDRESS-MIB -------------------------------------------------------------------------------- /netconf/MIBS/UDP-MIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/MIBS/UDP-MIB -------------------------------------------------------------------------------- /netconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/Makefile -------------------------------------------------------------------------------- /netconf/data/c_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/data/c_header.txt -------------------------------------------------------------------------------- /netconf/data/py_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/data/py_header.txt -------------------------------------------------------------------------------- /netconf/data/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/data/test.xml -------------------------------------------------------------------------------- /netconf/data/test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/data/test/test.xml -------------------------------------------------------------------------------- /netconf/data/yangdump-css-contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/data/yangdump-css-contents.txt -------------------------------------------------------------------------------- /netconf/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/Makefile -------------------------------------------------------------------------------- /netconf/doc/extra/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/extra/AUTHORS -------------------------------------------------------------------------------- /netconf/doc/extra/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/extra/COPYRIGHT -------------------------------------------------------------------------------- /netconf/doc/extra/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/extra/README -------------------------------------------------------------------------------- /netconf/doc/extra/yuma-legal-notices.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/extra/yuma-legal-notices.odt -------------------------------------------------------------------------------- /netconf/doc/extra/yuma-legal-notices.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/extra/yuma-legal-notices.pdf -------------------------------------------------------------------------------- /netconf/doc/writer2xhtml_yuma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/writer2xhtml_yuma.xml -------------------------------------------------------------------------------- /netconf/doc/yuma_docs/google-fonts.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/yuma_docs/google-fonts.tgz -------------------------------------------------------------------------------- /netconf/doc/yuma_docs/html/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/yuma_docs/html/copy.sh -------------------------------------------------------------------------------- /netconf/doc/yuma_docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/yuma_docs/index.html -------------------------------------------------------------------------------- /netconf/doc/yuma_docs/openyuma-dev-manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/yuma_docs/openyuma-dev-manual.odt -------------------------------------------------------------------------------- /netconf/doc/yuma_docs/openyuma-yangcli-manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/yuma_docs/openyuma-yangcli-manual.odt -------------------------------------------------------------------------------- /netconf/doc/yuma_docs/server-call-chain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/doc/yuma_docs/server-call-chain.txt -------------------------------------------------------------------------------- /netconf/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/etc/Makefile -------------------------------------------------------------------------------- /netconf/etc/netconfd-sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/etc/netconfd-sample.conf -------------------------------------------------------------------------------- /netconf/etc/yangcli-sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/etc/yangcli-sample.conf -------------------------------------------------------------------------------- /netconf/etc/yangdiff-sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/etc/yangdiff-sample.conf -------------------------------------------------------------------------------- /netconf/etc/yangdump-sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/etc/yangdump-sample.conf -------------------------------------------------------------------------------- /netconf/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/man/Makefile -------------------------------------------------------------------------------- /netconf/man/make_sil_dir.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/man/make_sil_dir.1 -------------------------------------------------------------------------------- /netconf/man/netconf-subsystem.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/man/netconf-subsystem.1 -------------------------------------------------------------------------------- /netconf/man/netconfd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/man/netconfd.1 -------------------------------------------------------------------------------- /netconf/man/yangcli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/man/yangcli.1 -------------------------------------------------------------------------------- /netconf/man/yangdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/man/yangdiff.1 -------------------------------------------------------------------------------- /netconf/man/yangdump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/man/yangdump.1 -------------------------------------------------------------------------------- /netconf/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/Makefile -------------------------------------------------------------------------------- /netconf/modules/ietf/AGENTX-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/AGENTX-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/DIFFSERV-CONFIG-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/DIFFSERV-CONFIG-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/DIFFSERV-DSCP-TC.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/DIFFSERV-DSCP-TC.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/DIFFSERV-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/DIFFSERV-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/DISMAN-EVENT-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/DISMAN-EVENT-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/DISMAN-SCHEDULE-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/DISMAN-SCHEDULE-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/DISMAN-SCRIPT-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/DISMAN-SCRIPT-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ENTITY-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ENTITY-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ENTITY-SENSOR-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ENTITY-SENSOR-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ENTITY-STATE-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ENTITY-STATE-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ENTITY-STATE-TC-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ENTITY-STATE-TC-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/EtherLike-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/EtherLike-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/HCNUM-TC.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/HCNUM-TC.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/HOST-RESOURCES-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/HOST-RESOURCES-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/HOST-RESOURCES-TYPES.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/HOST-RESOURCES-TYPES.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/IANA-LANGUAGE-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/IANA-LANGUAGE-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/IANA-RTPROTO-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/IANA-RTPROTO-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/IANAifType-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/IANAifType-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/IF-INVERTED-STACK-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/IF-INVERTED-STACK-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/IF-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/IF-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/INET-ADDRESS-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/INET-ADDRESS-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/INTEGRATED-SERVICES-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/INTEGRATED-SERVICES-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/IP-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/IP-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/RFC-1215.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/RFC-1215.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/RMON-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/RMON-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMP-FRAMEWORK-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMP-FRAMEWORK-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMP-MPD-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMP-MPD-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMP-NOTIFICATION-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMP-NOTIFICATION-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMP-TARGET-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMP-TARGET-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMP-USM-AES-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMP-USM-AES-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMPv2-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMPv2-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMPv2-TC.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMPv2-TC.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/SNMPv2-TM.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/SNMPv2-TM.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/TRANSPORT-ADDRESS-MIB.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/TRANSPORT-ADDRESS-MIB.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/iana-afn-safi.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/iana-afn-safi.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/iana-crypt-hash.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/iana-crypt-hash.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/iana-if-type.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/iana-if-type.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/iana-timezones.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/iana-timezones.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-interfaces.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-interfaces.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-ip.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-ip.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-ipfix-psamp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-ipfix-psamp.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-netconf-acm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-netconf-acm.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-netconf-monitoring.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-netconf-monitoring.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-netconf.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-netconf.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-routing.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-routing.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-common.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-common.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-community.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-community.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-engine.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-engine.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-notification.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-notification.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-proxy.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-proxy.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-target.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-target.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-tls.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-tls.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-tsm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-tsm.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-usm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-usm.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp-vacm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp-vacm.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-snmp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-snmp.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/ietf-system.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/ietf-system.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/nc-notifications.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/nc-notifications.yang -------------------------------------------------------------------------------- /netconf/modules/ietf/notifications.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/ietf/notifications.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/netconfd.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/netconfd.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/toaster.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/toaster.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yangcli.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yangcli.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yangdiff.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yangdiff.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yangdump.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yangdump.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-arp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-arp.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-nacm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-nacm.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-ncx.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-ncx.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-netconf.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-netconf.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-proc.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-proc.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-system.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-system.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-types.yang -------------------------------------------------------------------------------- /netconf/modules/netconfcentral/yuma-xsd.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/netconfcentral/yuma-xsd.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/t13.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/t13.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/test1badns.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/test1badns.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testbadext.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testbadext.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testimp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testimp.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testloops.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testloops.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testmust2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testmust2.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testnest.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testnest.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testnest2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testnest2.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testnest3.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testnest3.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testnesttop.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testnesttop.yang -------------------------------------------------------------------------------- /netconf/modules/test/fail/testunion.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/fail/testunion.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/augment_bug.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/augment_bug.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/augment_interface.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/augment_interface.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/examples.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/examples.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/negnum.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/negnum.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/siltest1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/siltest1.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/siltest2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/siltest2.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/siltest3.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/siltest3.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/siltest4.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/siltest4.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/siltest5.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/siltest5.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/siltest6.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/siltest6.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/siltest7.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/siltest7.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/t11.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/t11.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/t12.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/t12.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/t29.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/t29.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/t30.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/t30.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/t31.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/t31.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/t8.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/t8.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/t9.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/t9.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test1.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test10.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test10.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test1a.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test1a.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test1b.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test1b.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test1c.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test1c.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test2.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test3.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test3.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test3a.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test3a.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test3b.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test3b.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test4.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test4.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test5.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test5.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test6.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test6.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test7.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test7.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test8.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test8.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test8a.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test8a.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test8b.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test8b.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test8c.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test8c.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test8d.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test8d.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/test9.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/test9.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testaug2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testaug2.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testcommit.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testcommit.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testconfig.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testconfig.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testcrud.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testcrud.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testdec.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testdec.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testdev.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testdev.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testdev_dev.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testdev_dev.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testext.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testext.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testfalse.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testfalse.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testfeature.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testfeature.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testgrouping.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testgrouping.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testgrouping2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testgrouping2.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testgrouping3.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testgrouping3.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testgrp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testgrp.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testgrp2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testgrp2.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testmalloc.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testmalloc.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testmandatory.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testmandatory.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testmust.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testmust.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testobsolete.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testobsolete.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testr1@2009-01-01.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testr1@2009-01-01.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testr1@2009-02-02.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testr1@2009-02-02.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testr2@2008-01-01.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testr2@2008-01-01.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testr2@2009-01-01.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testr2@2009-01-01.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testrev.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testrev.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testrev2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testrev2.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testsi.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testsi.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testsim.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testsim.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/testuses.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/testuses.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/trev.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/trev.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/tunion.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/tunion.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/when_bug.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/when_bug.yang -------------------------------------------------------------------------------- /netconf/modules/test/pass/ytest.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/test/pass/ytest.yang -------------------------------------------------------------------------------- /netconf/modules/yang/ietf-inet-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/yang/ietf-inet-types.yang -------------------------------------------------------------------------------- /netconf/modules/yang/ietf-yang-smiv2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/yang/ietf-yang-smiv2.yang -------------------------------------------------------------------------------- /netconf/modules/yang/ietf-yang-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/yang/ietf-yang-types.yang -------------------------------------------------------------------------------- /netconf/modules/yang/yang-smi.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/modules/yang/yang-smi.yang -------------------------------------------------------------------------------- /netconf/scripts/start-replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/scripts/start-replay -------------------------------------------------------------------------------- /netconf/scripts/test-cancel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/scripts/test-cancel -------------------------------------------------------------------------------- /netconf/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/Makefile -------------------------------------------------------------------------------- /netconf/src/agt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/Makefile -------------------------------------------------------------------------------- /netconf/src/agt/agt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt.c -------------------------------------------------------------------------------- /netconf/src/agt/agt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_acm.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_acm.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cap.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cap.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cb.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cb.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cfg.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cfg.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cli.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_cli.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_commit_complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_commit_complete.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_commit_complete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_commit_complete.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_commit_validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_commit_validate.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_commit_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_commit_validate.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_connect.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_connect.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_hello.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_hello.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_if.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_if.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_ncx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_ncx.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_ncx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_ncx.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_ncxserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_ncxserver.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_ncxserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_ncxserver.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_not.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_not.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_not_queue_notification_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_not_queue_notification_cb.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_not_queue_notification_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_not_queue_notification_cb.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_plock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_plock.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_plock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_plock.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_proc.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_proc.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_rpc.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_rpc.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_rpcerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_rpcerr.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_rpcerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_rpcerr.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_ses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_ses.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_ses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_ses.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_signal.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_signal.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_state.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_state.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_sys.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_sys.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_time_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_time_filter.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_time_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_time_filter.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_timer.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_timer.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_top.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_top.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_tree.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_tree.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_util.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_util.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_val.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_val.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_val_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_val_parse.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_val_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_val_parse.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_xml.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_xml.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_xpath.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_xpath.h -------------------------------------------------------------------------------- /netconf/src/agt/agt_yuma_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_yuma_arp.c -------------------------------------------------------------------------------- /netconf/src/agt/agt_yuma_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/agt/agt_yuma_arp.h -------------------------------------------------------------------------------- /netconf/src/check-copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/check-copyright.py -------------------------------------------------------------------------------- /netconf/src/check-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/check-len.py -------------------------------------------------------------------------------- /netconf/src/mgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/Makefile -------------------------------------------------------------------------------- /netconf/src/mgr/mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_cap.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_cap.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_hello.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_hello.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_io.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_io.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_load.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_load.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_not.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_not.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_rpc.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_rpc.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_ses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_ses.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_ses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_ses.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_signal.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_signal.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_top.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_top.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_val_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_val_parse.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_val_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_val_parse.h -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_xml.c -------------------------------------------------------------------------------- /netconf/src/mgr/mgr_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/mgr/mgr_xml.h -------------------------------------------------------------------------------- /netconf/src/ncx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/Makefile -------------------------------------------------------------------------------- /netconf/src/ncx/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/b64.c -------------------------------------------------------------------------------- /netconf/src/ncx/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/b64.h -------------------------------------------------------------------------------- /netconf/src/ncx/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/blob.c -------------------------------------------------------------------------------- /netconf/src/ncx/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/blob.h -------------------------------------------------------------------------------- /netconf/src/ncx/bobhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/bobhash.c -------------------------------------------------------------------------------- /netconf/src/ncx/bobhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/bobhash.h -------------------------------------------------------------------------------- /netconf/src/ncx/cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/cap.c -------------------------------------------------------------------------------- /netconf/src/ncx/cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/cap.h -------------------------------------------------------------------------------- /netconf/src/ncx/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/cfg.c -------------------------------------------------------------------------------- /netconf/src/ncx/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/cfg.h -------------------------------------------------------------------------------- /netconf/src/ncx/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/cli.c -------------------------------------------------------------------------------- /netconf/src/ncx/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/cli.h -------------------------------------------------------------------------------- /netconf/src/ncx/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/conf.c -------------------------------------------------------------------------------- /netconf/src/ncx/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/conf.h -------------------------------------------------------------------------------- /netconf/src/ncx/def_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/def_reg.c -------------------------------------------------------------------------------- /netconf/src/ncx/def_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/def_reg.h -------------------------------------------------------------------------------- /netconf/src/ncx/dlq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/dlq.c -------------------------------------------------------------------------------- /netconf/src/ncx/dlq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/dlq.h -------------------------------------------------------------------------------- /netconf/src/ncx/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ext.c -------------------------------------------------------------------------------- /netconf/src/ncx/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ext.h -------------------------------------------------------------------------------- /netconf/src/ncx/getcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/getcb.h -------------------------------------------------------------------------------- /netconf/src/ncx/grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/grp.c -------------------------------------------------------------------------------- /netconf/src/ncx/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/grp.h -------------------------------------------------------------------------------- /netconf/src/ncx/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/help.c -------------------------------------------------------------------------------- /netconf/src/ncx/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/help.h -------------------------------------------------------------------------------- /netconf/src/ncx/json_wr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/json_wr.c -------------------------------------------------------------------------------- /netconf/src/ncx/json_wr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/json_wr.h -------------------------------------------------------------------------------- /netconf/src/ncx/libncx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/libncx.h -------------------------------------------------------------------------------- /netconf/src/ncx/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/log.c -------------------------------------------------------------------------------- /netconf/src/ncx/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/log.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx.c -------------------------------------------------------------------------------- /netconf/src/ncx/ncx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_appinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_appinfo.c -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_appinfo.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_feature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_feature.c -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_feature.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_list.c -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_list.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_num.c -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_num.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_str.c -------------------------------------------------------------------------------- /netconf/src/ncx/ncx_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncx_str.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncxconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncxconst.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncxmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncxmod.c -------------------------------------------------------------------------------- /netconf/src/ncx/ncxmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncxmod.h -------------------------------------------------------------------------------- /netconf/src/ncx/ncxtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ncxtypes.h -------------------------------------------------------------------------------- /netconf/src/ncx/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/obj.c -------------------------------------------------------------------------------- /netconf/src/ncx/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/obj.h -------------------------------------------------------------------------------- /netconf/src/ncx/obj_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/obj_help.c -------------------------------------------------------------------------------- /netconf/src/ncx/obj_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/obj_help.h -------------------------------------------------------------------------------- /netconf/src/ncx/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/op.c -------------------------------------------------------------------------------- /netconf/src/ncx/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/op.h -------------------------------------------------------------------------------- /netconf/src/ncx/plock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/plock.c -------------------------------------------------------------------------------- /netconf/src/ncx/plock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/plock.h -------------------------------------------------------------------------------- /netconf/src/ncx/plock_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/plock_cb.c -------------------------------------------------------------------------------- /netconf/src/ncx/plock_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/plock_cb.h -------------------------------------------------------------------------------- /netconf/src/ncx/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/rpc.c -------------------------------------------------------------------------------- /netconf/src/ncx/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/rpc.h -------------------------------------------------------------------------------- /netconf/src/ncx/rpc_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/rpc_err.c -------------------------------------------------------------------------------- /netconf/src/ncx/rpc_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/rpc_err.h -------------------------------------------------------------------------------- /netconf/src/ncx/runstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/runstack.c -------------------------------------------------------------------------------- /netconf/src/ncx/runstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/runstack.h -------------------------------------------------------------------------------- /netconf/src/ncx/send_buff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/send_buff.c -------------------------------------------------------------------------------- /netconf/src/ncx/send_buff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/send_buff.h -------------------------------------------------------------------------------- /netconf/src/ncx/ses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ses.c -------------------------------------------------------------------------------- /netconf/src/ncx/ses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ses.h -------------------------------------------------------------------------------- /netconf/src/ncx/ses_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ses_msg.c -------------------------------------------------------------------------------- /netconf/src/ncx/ses_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/ses_msg.h -------------------------------------------------------------------------------- /netconf/src/ncx/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/status.c -------------------------------------------------------------------------------- /netconf/src/ncx/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/status.h -------------------------------------------------------------------------------- /netconf/src/ncx/tk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/tk.c -------------------------------------------------------------------------------- /netconf/src/ncx/tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/tk.h -------------------------------------------------------------------------------- /netconf/src/ncx/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/top.c -------------------------------------------------------------------------------- /netconf/src/ncx/top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/top.h -------------------------------------------------------------------------------- /netconf/src/ncx/tstamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/tstamp.c -------------------------------------------------------------------------------- /netconf/src/ncx/tstamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/tstamp.h -------------------------------------------------------------------------------- /netconf/src/ncx/typ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/typ.c -------------------------------------------------------------------------------- /netconf/src/ncx/typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/typ.h -------------------------------------------------------------------------------- /netconf/src/ncx/uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/uptime.c -------------------------------------------------------------------------------- /netconf/src/ncx/uptime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/uptime.h -------------------------------------------------------------------------------- /netconf/src/ncx/val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val.c -------------------------------------------------------------------------------- /netconf/src/ncx/val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val.h -------------------------------------------------------------------------------- /netconf/src/ncx/val_get_leafref_targval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_get_leafref_targval.c -------------------------------------------------------------------------------- /netconf/src/ncx/val_get_leafref_targval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_get_leafref_targval.h -------------------------------------------------------------------------------- /netconf/src/ncx/val_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_parse.c -------------------------------------------------------------------------------- /netconf/src/ncx/val_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_parse.h -------------------------------------------------------------------------------- /netconf/src/ncx/val_set_cplxval_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_set_cplxval_obj.c -------------------------------------------------------------------------------- /netconf/src/ncx/val_set_cplxval_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_set_cplxval_obj.h -------------------------------------------------------------------------------- /netconf/src/ncx/val_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_util.c -------------------------------------------------------------------------------- /netconf/src/ncx/val_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/val_util.h -------------------------------------------------------------------------------- /netconf/src/ncx/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/var.c -------------------------------------------------------------------------------- /netconf/src/ncx/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/var.h -------------------------------------------------------------------------------- /netconf/src/ncx/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/version.h -------------------------------------------------------------------------------- /netconf/src/ncx/xml_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_msg.c -------------------------------------------------------------------------------- /netconf/src/ncx/xml_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_msg.h -------------------------------------------------------------------------------- /netconf/src/ncx/xml_rd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_rd.c -------------------------------------------------------------------------------- /netconf/src/ncx/xml_rd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_rd.h -------------------------------------------------------------------------------- /netconf/src/ncx/xml_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_util.c -------------------------------------------------------------------------------- /netconf/src/ncx/xml_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_util.h -------------------------------------------------------------------------------- /netconf/src/ncx/xml_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_val.c -------------------------------------------------------------------------------- /netconf/src/ncx/xml_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_val.h -------------------------------------------------------------------------------- /netconf/src/ncx/xml_wr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_wr.c -------------------------------------------------------------------------------- /netconf/src/ncx/xml_wr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xml_wr.h -------------------------------------------------------------------------------- /netconf/src/ncx/xmlns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xmlns.c -------------------------------------------------------------------------------- /netconf/src/ncx/xmlns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xmlns.h -------------------------------------------------------------------------------- /netconf/src/ncx/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath.c -------------------------------------------------------------------------------- /netconf/src/ncx/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath.h -------------------------------------------------------------------------------- /netconf/src/ncx/xpath1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath1.c -------------------------------------------------------------------------------- /netconf/src/ncx/xpath1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath1.h -------------------------------------------------------------------------------- /netconf/src/ncx/xpath_wr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath_wr.c -------------------------------------------------------------------------------- /netconf/src/ncx/xpath_wr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath_wr.h -------------------------------------------------------------------------------- /netconf/src/ncx/xpath_yang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath_yang.c -------------------------------------------------------------------------------- /netconf/src/ncx/xpath_yang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/xpath_yang.h -------------------------------------------------------------------------------- /netconf/src/ncx/yang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang.c -------------------------------------------------------------------------------- /netconf/src/ncx/yang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang.h -------------------------------------------------------------------------------- /netconf/src/ncx/yang_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_ext.c -------------------------------------------------------------------------------- /netconf/src/ncx/yang_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_ext.h -------------------------------------------------------------------------------- /netconf/src/ncx/yang_grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_grp.c -------------------------------------------------------------------------------- /netconf/src/ncx/yang_grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_grp.h -------------------------------------------------------------------------------- /netconf/src/ncx/yang_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_obj.c -------------------------------------------------------------------------------- /netconf/src/ncx/yang_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_obj.h -------------------------------------------------------------------------------- /netconf/src/ncx/yang_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_parse.c -------------------------------------------------------------------------------- /netconf/src/ncx/yang_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_parse.h -------------------------------------------------------------------------------- /netconf/src/ncx/yang_typ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_typ.c -------------------------------------------------------------------------------- /netconf/src/ncx/yang_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yang_typ.h -------------------------------------------------------------------------------- /netconf/src/ncx/yangconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yangconst.h -------------------------------------------------------------------------------- /netconf/src/ncx/yin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yin.c -------------------------------------------------------------------------------- /netconf/src/ncx/yin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yin.h -------------------------------------------------------------------------------- /netconf/src/ncx/yinyang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yinyang.c -------------------------------------------------------------------------------- /netconf/src/ncx/yinyang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ncx/yinyang.h -------------------------------------------------------------------------------- /netconf/src/netconfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/netconfd/Makefile -------------------------------------------------------------------------------- /netconf/src/netconfd/netconfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/netconfd/netconfd.c -------------------------------------------------------------------------------- /netconf/src/platform/curversion.h: -------------------------------------------------------------------------------- 1 | #define RELEASE 5 2 | -------------------------------------------------------------------------------- /netconf/src/platform/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/platform/header.txt -------------------------------------------------------------------------------- /netconf/src/platform/platform.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/platform/platform.profile -------------------------------------------------------------------------------- /netconf/src/platform/platform.profile.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/platform/platform.profile.depend -------------------------------------------------------------------------------- /netconf/src/platform/procdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/platform/procdefs.h -------------------------------------------------------------------------------- /netconf/src/platform/setversion.sh: -------------------------------------------------------------------------------- 1 | echo "#define RELEASE 5" > platform/curversion.h 2 | -------------------------------------------------------------------------------- /netconf/src/subsys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/subsys/Makefile -------------------------------------------------------------------------------- /netconf/src/subsys/netconf-subsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/subsys/netconf-subsystem.c -------------------------------------------------------------------------------- /netconf/src/yangcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/Makefile -------------------------------------------------------------------------------- /netconf/src/yangcli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/README -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_alias.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_alias.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_autoload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_autoload.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_autoload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_autoload.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_autolock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_autolock.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_autolock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_autolock.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_cmd.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_cmd.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_cond.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_cond.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_eval.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_eval.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_list.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_list.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_save.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_save.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_show.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_show.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_tab.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_tab.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_timer.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_timer.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_uservars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_uservars.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_uservars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_uservars.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_util.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_util.h -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_wordexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_wordexp.c -------------------------------------------------------------------------------- /netconf/src/yangcli/yangcli_wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangcli/yangcli_wordexp.h -------------------------------------------------------------------------------- /netconf/src/yangdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/Makefile -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff.c -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff.h -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_grp.c -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_grp.h -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_obj.c -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_obj.h -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_typ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_typ.c -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_typ.h -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_util.c -------------------------------------------------------------------------------- /netconf/src/yangdiff/yangdiff_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdiff/yangdiff_util.h -------------------------------------------------------------------------------- /netconf/src/yangdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdump/Makefile -------------------------------------------------------------------------------- /netconf/src/yangdump/wsdl_ex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdump/wsdl_ex.txt -------------------------------------------------------------------------------- /netconf/src/yangdump/yangdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/yangdump/yangdump.c -------------------------------------------------------------------------------- /netconf/src/ydump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/Makefile -------------------------------------------------------------------------------- /netconf/src/ydump/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/c.c -------------------------------------------------------------------------------- /netconf/src/ydump/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/c.h -------------------------------------------------------------------------------- /netconf/src/ydump/c_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/c_util.c -------------------------------------------------------------------------------- /netconf/src/ydump/c_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/c_util.h -------------------------------------------------------------------------------- /netconf/src/ydump/cyang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/cyang.c -------------------------------------------------------------------------------- /netconf/src/ydump/cyang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/cyang.h -------------------------------------------------------------------------------- /netconf/src/ydump/h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/h.c -------------------------------------------------------------------------------- /netconf/src/ydump/h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/h.h -------------------------------------------------------------------------------- /netconf/src/ydump/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/html.c -------------------------------------------------------------------------------- /netconf/src/ydump/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/html.h -------------------------------------------------------------------------------- /netconf/src/ydump/py_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/py_util.c -------------------------------------------------------------------------------- /netconf/src/ydump/py_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/py_util.h -------------------------------------------------------------------------------- /netconf/src/ydump/sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/sql.c -------------------------------------------------------------------------------- /netconf/src/ydump/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/sql.h -------------------------------------------------------------------------------- /netconf/src/ydump/tg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/tg2.c -------------------------------------------------------------------------------- /netconf/src/ydump/tg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/tg2.h -------------------------------------------------------------------------------- /netconf/src/ydump/xsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd.c -------------------------------------------------------------------------------- /netconf/src/ydump/xsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd.h -------------------------------------------------------------------------------- /netconf/src/ydump/xsd_typ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd_typ.c -------------------------------------------------------------------------------- /netconf/src/ydump/xsd_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd_typ.h -------------------------------------------------------------------------------- /netconf/src/ydump/xsd_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd_util.c -------------------------------------------------------------------------------- /netconf/src/ydump/xsd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd_util.h -------------------------------------------------------------------------------- /netconf/src/ydump/xsd_yang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd_yang.c -------------------------------------------------------------------------------- /netconf/src/ydump/xsd_yang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/xsd_yang.h -------------------------------------------------------------------------------- /netconf/src/ydump/yangdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/yangdump.h -------------------------------------------------------------------------------- /netconf/src/ydump/yangdump_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/yangdump_util.c -------------------------------------------------------------------------------- /netconf/src/ydump/yangdump_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/yangdump_util.h -------------------------------------------------------------------------------- /netconf/src/ydump/yangstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/yangstats.c -------------------------------------------------------------------------------- /netconf/src/ydump/yangstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/yangstats.h -------------------------------------------------------------------------------- /netconf/src/ydump/yangyin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/yangyin.c -------------------------------------------------------------------------------- /netconf/src/ydump/yangyin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/yangyin.h -------------------------------------------------------------------------------- /netconf/src/ydump/ydump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/ydump.c -------------------------------------------------------------------------------- /netconf/src/ydump/ydump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/src/ydump/ydump.h -------------------------------------------------------------------------------- /netconf/test/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/Doxyfile -------------------------------------------------------------------------------- /netconf/test/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/README.TXT -------------------------------------------------------------------------------- /netconf/test/Yuma-TestHarness.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/Yuma-TestHarness.pdf -------------------------------------------------------------------------------- /netconf/test/integ-tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/Makefile -------------------------------------------------------------------------------- /netconf/test/integ-tests/alltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/alltests.py -------------------------------------------------------------------------------- /netconf/test/integ-tests/default-none-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/default-none-running.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/default-none-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/default-none-running.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/device-edit-candidate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/device-edit-candidate.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/device-edit-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/device-edit-running.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/device-edit-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/device-edit-running.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/discard-changes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/discard-changes.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/discard-changes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/discard-changes.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/lock-load-candidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/lock-load-candidate.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/lock-load-candidate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/lock-load-candidate.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/lock-load-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/lock-load-running.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/lock-load-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/lock-load-running.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/simple-edit-candidate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/simple-edit-candidate.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/simple-edit-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/simple-edit-running.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/simple-edit-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/simple-edit-running.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/simple-yang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/simple-yang.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/simple-yang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/simple-yang.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/state-edit-candidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/state-edit-candidate.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/state-edit-candidate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/state-edit-candidate.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/state-edit-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/state-edit-running.cpp -------------------------------------------------------------------------------- /netconf/test/integ-tests/state-edit-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/state-edit-running.mk -------------------------------------------------------------------------------- /netconf/test/integ-tests/test2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/integ-tests/test2.yang -------------------------------------------------------------------------------- /netconf/test/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/lib/Makefile -------------------------------------------------------------------------------- /netconf/test/make-doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/make-doxygen.sh -------------------------------------------------------------------------------- /netconf/test/make-rules/agt-sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/make-rules/agt-sources.mk -------------------------------------------------------------------------------- /netconf/test/make-rules/agt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/make-rules/agt.mk -------------------------------------------------------------------------------- /netconf/test/make-rules/common-rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/make-rules/common-rules.mk -------------------------------------------------------------------------------- /netconf/test/make-rules/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/make-rules/common.mk -------------------------------------------------------------------------------- /netconf/test/make-rules/ncx-sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/make-rules/ncx-sources.mk -------------------------------------------------------------------------------- /netconf/test/make-rules/ncx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/make-rules/ncx.mk -------------------------------------------------------------------------------- /netconf/test/modules/build-sil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/modules/build-sil/Makefile -------------------------------------------------------------------------------- /netconf/test/modules/yang/device_test.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/modules/yang/device_test.yang -------------------------------------------------------------------------------- /netconf/test/modules/yang/simple_list_test.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/modules/yang/simple_list_test.yang -------------------------------------------------------------------------------- /netconf/test/modules/yang/simple_yang_test.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/modules/yang/simple_yang_test.yang -------------------------------------------------------------------------------- /netconf/test/stubs/agt/agt_ncxserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/stubs/agt/agt_ncxserver.cpp -------------------------------------------------------------------------------- /netconf/test/stubs/ncx/send_buff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/stubs/ncx/send_buff.cpp -------------------------------------------------------------------------------- /netconf/test/subsys-test/ncx-init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/subsys-test/ncx-init/Makefile -------------------------------------------------------------------------------- /netconf/test/support/callbacks/callback-checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/callbacks/callback-checker.h -------------------------------------------------------------------------------- /netconf/test/support/checkers/checker-group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/checkers/checker-group.h -------------------------------------------------------------------------------- /netconf/test/support/fixtures/spoofed-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/fixtures/spoofed-args.h -------------------------------------------------------------------------------- /netconf/test/support/fixtures/test-context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/fixtures/test-context.cpp -------------------------------------------------------------------------------- /netconf/test/support/fixtures/test-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/fixtures/test-context.h -------------------------------------------------------------------------------- /netconf/test/support/integ-support-sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/integ-support-sources.mk -------------------------------------------------------------------------------- /netconf/test/support/integ-support.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/integ-support.mk -------------------------------------------------------------------------------- /netconf/test/support/misc-util/array-deleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/misc-util/array-deleter.h -------------------------------------------------------------------------------- /netconf/test/support/misc-util/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/misc-util/base64.cpp -------------------------------------------------------------------------------- /netconf/test/support/misc-util/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/misc-util/base64.h -------------------------------------------------------------------------------- /netconf/test/support/misc-util/log-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/misc-util/log-utils.cpp -------------------------------------------------------------------------------- /netconf/test/support/misc-util/log-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/misc-util/log-utils.h -------------------------------------------------------------------------------- /netconf/test/support/misc-util/ptree-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/misc-util/ptree-utils.cpp -------------------------------------------------------------------------------- /netconf/test/support/misc-util/ptree-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/misc-util/ptree-utils.h -------------------------------------------------------------------------------- /netconf/test/support/support-sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/support-sources.mk -------------------------------------------------------------------------------- /netconf/test/support/support.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/support.mk -------------------------------------------------------------------------------- /netconf/test/support/sys-support-sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/sys-support-sources.mk -------------------------------------------------------------------------------- /netconf/test/support/sys-support.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/support/sys-support.mk -------------------------------------------------------------------------------- /netconf/test/sys-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/Makefile -------------------------------------------------------------------------------- /netconf/test/sys-test/all-candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/all-candidate.py -------------------------------------------------------------------------------- /netconf/test/sys-test/all-running.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/all-running.py -------------------------------------------------------------------------------- /netconf/test/sys-test/configure-env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/configure-env.py -------------------------------------------------------------------------------- /netconf/test/sys-test/configure-yuma-systest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/configure-yuma-systest.h -------------------------------------------------------------------------------- /netconf/test/sys-test/device-edit-candidate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/device-edit-candidate.mk -------------------------------------------------------------------------------- /netconf/test/sys-test/device-edit-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/device-edit-running.cpp -------------------------------------------------------------------------------- /netconf/test/sys-test/device-edit-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/device-edit-running.mk -------------------------------------------------------------------------------- /netconf/test/sys-test/lock-load-candidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/lock-load-candidate.cpp -------------------------------------------------------------------------------- /netconf/test/sys-test/lock-load-candidate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/lock-load-candidate.mk -------------------------------------------------------------------------------- /netconf/test/sys-test/lock-load-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/lock-load-running.cpp -------------------------------------------------------------------------------- /netconf/test/sys-test/lock-load-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/lock-load-running.mk -------------------------------------------------------------------------------- /netconf/test/sys-test/shutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/shutdown.cpp -------------------------------------------------------------------------------- /netconf/test/sys-test/shutdown.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/shutdown.mk -------------------------------------------------------------------------------- /netconf/test/sys-test/simple-edit-candidate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/simple-edit-candidate.mk -------------------------------------------------------------------------------- /netconf/test/sys-test/simple-edit-running.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/simple-edit-running.cpp -------------------------------------------------------------------------------- /netconf/test/sys-test/simple-edit-running.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/sys-test/simple-edit-running.mk -------------------------------------------------------------------------------- /netconf/test/utils/sort_undefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/utils/sort_undefs.py -------------------------------------------------------------------------------- /netconf/test/ydump-test/ydump-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/test/ydump-test/ydump-test.py -------------------------------------------------------------------------------- /netconf/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/Makefile -------------------------------------------------------------------------------- /netconf/util/README.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/README.fedora -------------------------------------------------------------------------------- /netconf/util/README.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/README.ubuntu -------------------------------------------------------------------------------- /netconf/util/dot-svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/dot-svnignore -------------------------------------------------------------------------------- /netconf/util/dot-svnignore-tecla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/dot-svnignore-tecla -------------------------------------------------------------------------------- /netconf/util/gitversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/gitversion -------------------------------------------------------------------------------- /netconf/util/make-src-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/make-src-tarball.sh -------------------------------------------------------------------------------- /netconf/util/make-svn-src-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/make-svn-src-tarball.sh -------------------------------------------------------------------------------- /netconf/util/make-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/make-tarball.sh -------------------------------------------------------------------------------- /netconf/util/make_sil_dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/make_sil_dir -------------------------------------------------------------------------------- /netconf/util/makefile-top.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/makefile-top.sil -------------------------------------------------------------------------------- /netconf/util/makefile.sil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/makefile.sil -------------------------------------------------------------------------------- /netconf/util/prep-deb-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/prep-deb-tree.sh -------------------------------------------------------------------------------- /netconf/util/prep-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/prep-deb.sh -------------------------------------------------------------------------------- /netconf/util/prep-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/prep-rpm.sh -------------------------------------------------------------------------------- /netconf/util/rename_yumadebs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClovis/OpenYuma/HEAD/netconf/util/rename_yumadebs.sh --------------------------------------------------------------------------------