├── .buildkite └── hooks │ └── post-command ├── .circleci └── config.yml ├── .codeclimate.yml ├── .gitignore ├── .goreleaser.yml ├── CHANGELOG.md ├── CNAME ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── _layouts └── default.html ├── deploy.sh ├── device ├── beagle.go ├── colibri.go ├── config │ ├── configurator.go │ └── constants.go ├── device.go ├── edison.go ├── edison_posix.go ├── edison_windows.go ├── flasher.go ├── rasppi.go ├── sd_flasher.go └── serial_flasher.go ├── docker-compose.yml ├── front.yml ├── glide.lock ├── glide.yaml ├── iotit.go ├── mapping.json ├── repo ├── mapping.go ├── repository.go └── repository_test.go ├── static ├── css │ ├── normalize.css │ ├── skeleton.css │ └── style.css ├── img │ ├── IoTit_favicon_002.png │ ├── favicon.png │ └── git-win.png └── svg │ ├── IoTit_Logo_Light_002.svg │ └── isaax_logo_w.svg ├── vbox ├── machine.go └── vbox.go ├── vendor ├── github.com │ ├── Nerdmaster │ │ └── terminal │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── absprompt.go │ │ │ ├── bytes_to_key.go │ │ │ ├── dumb_terminal.go │ │ │ ├── example │ │ │ ├── absprompt.go │ │ │ ├── dumb.go │ │ │ ├── goterm.go │ │ │ ├── keyreport.go │ │ │ ├── prompt.go │ │ │ └── simple.go │ │ │ ├── input.go │ │ │ ├── key_constants.go │ │ │ ├── keys.go │ │ │ ├── prompt.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── runes_differ.go │ │ │ ├── runes_differ_test.go │ │ │ ├── terminal.go │ │ │ ├── terminal_test.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cov_report.sh │ │ │ ├── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── dumpcgo_test.go │ │ │ ├── dumpnocgo_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── internal_test.go │ │ │ ├── internalunsafe_test.go │ │ │ ├── spew.go │ │ │ ├── spew_test.go │ │ │ └── testdata │ │ │ │ └── dumpcgo.go │ │ │ └── test_coverage.txt │ ├── howeyc │ │ └── gopass │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── OPENSOLARIS.LICENSE │ │ │ ├── README.md │ │ │ ├── pass.go │ │ │ ├── pass_test.go │ │ │ ├── terminal.go │ │ │ └── terminal_solaris.go │ ├── hypersleep │ │ └── easyssh │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── easyssh.go │ │ │ ├── easyssh_test.go │ │ │ └── example │ │ │ ├── run.go │ │ │ └── scp.go │ ├── juju │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── errortypes.go │ │ │ ├── errortypes_test.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── functions.go │ │ │ ├── functions_test.go │ │ │ ├── package_test.go │ │ │ ├── path.go │ │ │ └── path_test.go │ ├── mattn │ │ ├── go-pipeline │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ └── pipeline.go │ │ └── go-runewidth │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.mkd │ │ │ ├── runewidth.go │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_posix.go │ │ │ ├── runewidth_test.go │ │ │ └── runewidth_windows.go │ ├── mitchellh │ │ └── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── homedir.go │ │ │ └── homedir_test.go │ ├── pborman │ │ └── uuid │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── node.go │ │ │ ├── seq_test.go │ │ │ ├── sql.go │ │ │ ├── sql_test.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── uuid_test.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bench_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── example_test.go │ │ │ ├── format_test.go │ │ │ ├── stack.go │ │ │ └── stack_test.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── difflib │ │ │ ├── difflib.go │ │ │ └── difflib_test.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── alt_exit_test.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── example_basic_test.go │ │ │ ├── example_hook_test.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatter_bench_test.go │ │ │ ├── hook_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ ├── syslog │ │ │ │ ├── README.md │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ └── test │ │ │ │ ├── test.go │ │ │ │ └── test_test.go │ │ │ ├── json_formatter.go │ │ │ ├── json_formatter_test.go │ │ │ ├── logger.go │ │ │ ├── logger_bench_test.go │ │ │ ├── logrus.go │ │ │ ├── logrus_test.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ ├── stretchr │ │ └── testify │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _codegen │ │ │ └── main.go │ │ │ ├── assert │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── assertions_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── forward_assertions_test.go │ │ │ ├── http_assertions.go │ │ │ └── http_assertions_test.go │ │ │ ├── doc.go │ │ │ ├── http │ │ │ ├── doc.go │ │ │ ├── test_response_writer.go │ │ │ └── test_round_tripper.go │ │ │ ├── mock │ │ │ ├── doc.go │ │ │ ├── mock.go │ │ │ └── mock_test.go │ │ │ ├── package_test.go │ │ │ ├── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── forward_requirements_test.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ ├── requirements.go │ │ │ └── requirements_test.go │ │ │ ├── suite │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ ├── suite.go │ │ │ └── suite_test.go │ │ │ └── vendor │ │ │ └── github.com │ │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── LICENSE │ │ │ │ └── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── format.go │ │ │ │ └── spew.go │ │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ ├── LICENSE │ │ │ │ └── difflib │ │ │ │ └── difflib.go │ │ │ └── stretchr │ │ │ └── objx │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── accessors.go │ │ │ ├── codegen │ │ │ ├── array-access.txt │ │ │ ├── index.html │ │ │ ├── template.txt │ │ │ └── types_list.txt │ │ │ ├── constants.go │ │ │ ├── conversions.go │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── mutations.go │ │ │ ├── security.go │ │ │ ├── tests.go │ │ │ ├── type_specific_codegen.go │ │ │ └── value.go │ ├── tj │ │ └── go-spin │ │ │ ├── Readme.md │ │ │ ├── example │ │ │ └── spin.go │ │ │ ├── go-spin.gif │ │ │ └── spin.go │ └── xshellinc │ │ ├── esp-flasher │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common │ │ │ ├── fw_bundle.go │ │ │ ├── fw_bundle_zip.go │ │ │ ├── report.go │ │ │ └── slip.go │ │ ├── esp │ │ │ ├── .gitattributes │ │ │ ├── esp.go │ │ │ ├── flasher │ │ │ │ ├── common.go │ │ │ │ ├── flash.go │ │ │ │ ├── flash_params.go │ │ │ │ ├── flasher_client.go │ │ │ │ └── read_flash.go │ │ │ └── rom_client │ │ │ │ └── rom_client.go │ │ ├── esp32 │ │ │ ├── bindata.go │ │ │ ├── data │ │ │ │ └── stub_flasher.json │ │ │ ├── efuses.go │ │ │ ├── encryption.go │ │ │ ├── esp32.go │ │ │ └── fake_efuse_controller.go │ │ ├── esp8266 │ │ │ ├── bindata.go │ │ │ ├── data │ │ │ │ └── stub_flasher.json │ │ │ └── esp8266.go │ │ ├── flash.go │ │ └── serialport │ │ │ ├── serial.go │ │ │ ├── serial_darwin.go │ │ │ ├── serial_linux.go │ │ │ ├── serial_posix.go │ │ │ └── serial_windows.go │ │ ├── go-serial │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── go-serial-test │ │ │ └── go-serial-test.go │ │ ├── integration_test.go │ │ ├── open_darwin.go │ │ ├── open_freebsd.go │ │ ├── open_linux.go │ │ ├── open_posix.go │ │ ├── open_windows.go │ │ └── serial.go │ │ ├── go-virtualbox │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dhcp.go │ │ ├── disk.go │ │ ├── doc.go │ │ ├── extra.go │ │ ├── hostonlynet.go │ │ ├── machine.go │ │ ├── natnet.go │ │ ├── nic.go │ │ ├── pfrule.go │ │ ├── storage.go │ │ ├── util.go │ │ └── vbm.go │ │ └── tools │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── constants │ │ ├── device.go │ │ ├── init.go │ │ ├── layouts.go │ │ └── locale.go │ │ ├── dialogs │ │ ├── dialogs_test.go │ │ ├── generic-dialog.go │ │ ├── number-validators.go │ │ ├── validators.go │ │ └── wifi-password-dialog.go │ │ ├── lib │ │ ├── help │ │ │ ├── help.go │ │ │ ├── help_darwin.go │ │ │ ├── help_linux.go │ │ │ ├── help_windows.go │ │ │ └── http-proxy-reader.go │ │ ├── inotify │ │ │ ├── inotify_linux.go │ │ │ └── inotify_linux_test.go │ │ ├── ping │ │ │ ├── p_darwin.go │ │ │ ├── p_linux.go │ │ │ ├── p_windows.go │ │ │ └── ping.go │ │ ├── process │ │ │ ├── process.go │ │ │ ├── process_darwin.go │ │ │ ├── process_linux.go │ │ │ └── process_test.go │ │ ├── ssh_helper │ │ │ └── ssh.go │ │ ├── sudo │ │ │ ├── callbacks.go │ │ │ └── sudo.go │ │ └── tar │ │ │ ├── tar.go │ │ │ └── tar_test.go │ │ ├── locale │ │ ├── layouts.go │ │ └── locale.go │ │ └── vendor │ │ └── github.com │ │ └── hypersleep │ │ └── easyssh │ │ ├── .gitignore │ │ ├── README.md │ │ ├── easyssh.go │ │ ├── easyssh_test.go │ │ └── example │ │ ├── run.go │ │ └── scp.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── acme_test.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── autocert_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── listener.go │ │ │ │ ├── renewal.go │ │ │ │ └── renewal_test.go │ │ │ ├── jws.go │ │ │ ├── jws_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2b_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2s_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ ├── chacha20poly1305_test.go │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ └── chacha_test.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1_test.go │ │ │ ├── builder.go │ │ │ ├── cryptobyte_test.go │ │ │ ├── example_test.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── ed25519_test.go │ │ │ ├── internal │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── md4 │ │ │ ├── example_test.go │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ └── example_test.go │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ ├── box_test.go │ │ │ │ └── example_test.go │ │ │ └── secretbox │ │ │ │ ├── example_test.go │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── bmp-string_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── rc2.go │ │ │ │ │ └── rc2_test.go │ │ │ ├── mac.go │ │ │ ├── mac_test.go │ │ │ ├── pbkdf.go │ │ │ ├── pbkdf_test.go │ │ │ ├── pkcs12.go │ │ │ ├── pkcs12_test.go │ │ │ └── safebags.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── keyring_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── knownhosts │ │ │ │ ├── knownhosts.go │ │ │ │ └── knownhosts_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── dial_unix_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── tea │ │ │ ├── cipher.go │ │ │ └── tea_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ │ └── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── codereview.cfg │ │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── env_unset.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.pl │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── syscall_test.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── creds_test.go │ │ ├── dev_darwin.go │ │ ├── dev_darwin_test.go │ │ ├── dev_linux.go │ │ ├── dev_linux_test.go │ │ ├── dev_netbsd.go │ │ ├── dev_netbsd_test.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── export_test.go │ │ ├── file_unix.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── gccgo_linux_sparc64.go │ │ ├── linux │ │ │ ├── Dockerfile │ │ │ ├── mkall.go │ │ │ ├── mksysnum.pl │ │ │ └── types.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── mmap_unix_test.go │ │ ├── openbsd_pledge.go │ │ ├── openbsd_test.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_bsd_test.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_test.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_linux_test.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_solaris_test.go │ │ ├── syscall_test.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_test.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_unset.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── export_test.go │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── registry_test.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ ├── example │ │ │ ├── beep.go │ │ │ ├── install.go │ │ │ ├── main.go │ │ │ ├── manage.go │ │ │ └── service.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── mgr_test.go │ │ │ └── service.go │ │ ├── security.go │ │ ├── service.go │ │ ├── svc_test.go │ │ ├── sys_386.s │ │ └── sys_amd64.s │ │ ├── syscall.go │ │ ├── syscall_test.go │ │ ├── syscall_windows.go │ │ ├── syscall_windows_test.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go └── gopkg.in │ ├── cheggaaa │ └── pb.v1 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example_copy_test.go │ │ ├── example_multiple_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── pb.go │ │ ├── pb_appengine.go │ │ ├── pb_nix.go │ │ ├── pb_solaris.go │ │ ├── pb_test.go │ │ ├── pb_win.go │ │ ├── pb_x.go │ │ ├── pool.go │ │ ├── pool_win.go │ │ ├── pool_x.go │ │ ├── reader.go │ │ ├── runecount.go │ │ ├── runecount_test.go │ │ ├── termios_bsd.go │ │ └── termios_nix.go │ └── urfave │ └── cli.v1 │ ├── .flake8 │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── altsrc │ ├── altsrc.go │ ├── flag.go │ ├── flag_generated.go │ ├── flag_test.go │ ├── helpers_test.go │ ├── input_source_context.go │ ├── map_input_source.go │ ├── toml_command_test.go │ ├── toml_file_loader.go │ ├── yaml_command_test.go │ └── yaml_file_loader.go │ ├── app.go │ ├── app_test.go │ ├── appveyor.yml │ ├── autocomplete │ ├── bash_autocomplete │ └── zsh_autocomplete │ ├── category.go │ ├── cli.go │ ├── command.go │ ├── command_test.go │ ├── context.go │ ├── context_test.go │ ├── errors.go │ ├── errors_test.go │ ├── flag-types.json │ ├── flag.go │ ├── flag_generated.go │ ├── flag_test.go │ ├── funcs.go │ ├── generate-flag-types │ ├── help.go │ ├── help_test.go │ ├── helpers_test.go │ ├── helpers_unix_test.go │ ├── helpers_windows_test.go │ └── runtests └── workstation ├── w_darwin.go ├── w_linux.go ├── w_windows.go └── workstation.go /.buildkite/hooks/post-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/.buildkite/hooks/post-command -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | iotit.isaax.io -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/README.md -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/deploy.sh -------------------------------------------------------------------------------- /device/beagle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/beagle.go -------------------------------------------------------------------------------- /device/colibri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/colibri.go -------------------------------------------------------------------------------- /device/config/configurator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/config/configurator.go -------------------------------------------------------------------------------- /device/config/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/config/constants.go -------------------------------------------------------------------------------- /device/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/device.go -------------------------------------------------------------------------------- /device/edison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/edison.go -------------------------------------------------------------------------------- /device/edison_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/edison_posix.go -------------------------------------------------------------------------------- /device/edison_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/edison_windows.go -------------------------------------------------------------------------------- /device/flasher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/flasher.go -------------------------------------------------------------------------------- /device/rasppi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/rasppi.go -------------------------------------------------------------------------------- /device/sd_flasher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/sd_flasher.go -------------------------------------------------------------------------------- /device/serial_flasher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/device/serial_flasher.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /front.yml: -------------------------------------------------------------------------------- 1 | --- 2 | title: IoTit SBC flashing utility 3 | layout: default 4 | --- -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/glide.yaml -------------------------------------------------------------------------------- /iotit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/iotit.go -------------------------------------------------------------------------------- /mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/mapping.json -------------------------------------------------------------------------------- /repo/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/repo/mapping.go -------------------------------------------------------------------------------- /repo/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/repo/repository.go -------------------------------------------------------------------------------- /repo/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/repo/repository_test.go -------------------------------------------------------------------------------- /static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/css/normalize.css -------------------------------------------------------------------------------- /static/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/css/skeleton.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/IoTit_favicon_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/img/IoTit_favicon_002.png -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/git-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/img/git-win.png -------------------------------------------------------------------------------- /static/svg/IoTit_Logo_Light_002.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/svg/IoTit_Logo_Light_002.svg -------------------------------------------------------------------------------- /static/svg/isaax_logo_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/static/svg/isaax_logo_w.svg -------------------------------------------------------------------------------- /vbox/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vbox/machine.go -------------------------------------------------------------------------------- /vbox/vbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vbox/vbox.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/Makefile -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/README.md -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/absprompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/absprompt.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/bytes_to_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/bytes_to_key.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/example/dumb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/example/dumb.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/input.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/keys.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/prompt.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/reader.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/reader_test.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/runes_differ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/runes_differ.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/terminal.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/util.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/util_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/util_linux.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/util_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/util_plan9.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/util_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/util_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/Nerdmaster/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/Nerdmaster/terminal/util_windows.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/README.md -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/cov_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/cov_report.sh -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/common_test.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/dump_test.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/spew/spew_test.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/test_coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/davecgh/go-spew/test_coverage.txt -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/OPENSOLARIS.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/OPENSOLARIS.LICENSE -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/README.md -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/pass.go -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/pass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/pass_test.go -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/terminal.go -------------------------------------------------------------------------------- /vendor/github.com/howeyc/gopass/terminal_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/howeyc/gopass/terminal_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/hypersleep/easyssh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/hypersleep/easyssh/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hypersleep/easyssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/hypersleep/easyssh/README.md -------------------------------------------------------------------------------- /vendor/github.com/hypersleep/easyssh/easyssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/hypersleep/easyssh/easyssh.go -------------------------------------------------------------------------------- /vendor/github.com/hypersleep/easyssh/easyssh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/hypersleep/easyssh/easyssh_test.go -------------------------------------------------------------------------------- /vendor/github.com/hypersleep/easyssh/example/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/hypersleep/easyssh/example/run.go -------------------------------------------------------------------------------- /vendor/github.com/hypersleep/easyssh/example/scp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/hypersleep/easyssh/example/scp.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/doc.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/error.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/error_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/errortypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/errortypes.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/errortypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/errortypes_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/export_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/functions.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/functions_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/package_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/path.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/juju/errors/path_test.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-pipeline/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-pipeline/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-pipeline/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-pipeline/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-pipeline/pipeline.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-runewidth/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-runewidth/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-runewidth/README.mkd -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-runewidth/runewidth.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mattn/go-runewidth/runewidth_js.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mitchellh/go-homedir/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/mitchellh/go-homedir/homedir.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/marshal_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/seq_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pborman/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pkg/errors/stack_test.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pmezard/go-difflib/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/pmezard/go-difflib/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/alt_exit_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/hooks/test/test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/Godeps/Godeps.json -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/Godeps/Readme -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/LICENCE.txt -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/README.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/_codegen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/_codegen/main.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/http/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/http/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/mock/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/mock/mock.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/mock/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/mock/mock_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/package_test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/require/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/require/require.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/suite/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/suite/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/stretchr/testify/suite/suite.go -------------------------------------------------------------------------------- /vendor/github.com/tj/go-spin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/tj/go-spin/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/tj/go-spin/example/spin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/tj/go-spin/example/spin.go -------------------------------------------------------------------------------- /vendor/github.com/tj/go-spin/go-spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/tj/go-spin/go-spin.gif -------------------------------------------------------------------------------- /vendor/github.com/tj/go-spin/spin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/tj/go-spin/spin.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/esp-flasher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/esp-flasher/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/esp-flasher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/esp-flasher/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/esp-flasher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/esp-flasher/README.md -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/esp-flasher/esp/.gitattributes: -------------------------------------------------------------------------------- 1 | data/stub*.json -diff 2 | -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/esp-flasher/esp/esp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/esp-flasher/esp/esp.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/esp-flasher/flash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/esp-flasher/flash.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/README.markdown -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/open_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/open_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/open_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/open_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/open_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/open_linux.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/open_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/open_posix.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/open_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/open_windows.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-serial/serial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-serial/serial.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/README.md -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/dhcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/dhcp.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/disk.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/doc.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/extra.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/machine.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/natnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/natnet.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/nic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/nic.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/pfrule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/pfrule.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/storage.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/util.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/go-virtualbox/vbm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/go-virtualbox/vbm.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/constants/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/constants/device.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/constants/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/constants/init.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/constants/locale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/constants/locale.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/lib/help/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/lib/help/help.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/lib/ping/p_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/lib/ping/p_linux.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/lib/ping/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/lib/ping/ping.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/lib/sudo/sudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/lib/sudo/sudo.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/lib/tar/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/lib/tar/tar.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/lib/tar/tar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/lib/tar/tar_test.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/locale/layouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/locale/layouts.go -------------------------------------------------------------------------------- /vendor/github.com/xshellinc/tools/locale/locale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/github.com/xshellinc/tools/locale/locale.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/acme_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/autocert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/autocert/autocert.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/autocert/cache.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/autocert/listener.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/renewal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/autocert/renewal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/jws_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/acme/types_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/blake2x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2b/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/blake2x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blake2s/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/blowfish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blowfish/blowfish_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/bn256_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/cast5/cast5_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/asn1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/cryptobyte/asn1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/asn1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/cryptobyte/asn1_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/cryptobyte/builder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/cryptobyte/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/cryptobyte/string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/const_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/const_amd64.h -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/const_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/const_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/cswap_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/cswap_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/curve25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/curve25519.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/freeze_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/freeze_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/mul_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/mul_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/square_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/curve25519/square_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/ed25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ed25519/ed25519.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/ed25519_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ed25519/ed25519_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/hkdf/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/md4/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/nacl/auth/auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/nacl/auth/auth_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/nacl/auth/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/nacl/box/box_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/nacl/box/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/armor/armor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/armor/armor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/armor/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/armor/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/canonical_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/canonical_text.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/errors/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/packet/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/packet/literal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/ocfb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/packet/ocfb.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/opaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/packet/opaque.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/packet/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/packet/reader.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/userid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/packet/userid.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/read_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/s2k/s2k.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/s2k/s2k.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/s2k/s2k_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/s2k/s2k_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/openpgp/write_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/libotr_test_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/otr/libotr_test_helper.c -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/bmp-string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/bmp-string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/bmp-string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/bmp-string_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/internal/rc2/rc2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/internal/rc2/rc2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/mac_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/safebags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/pkcs12/safebags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/poly1305.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/poly1305/poly1305.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/poly1305_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/poly1305/poly1305_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/poly1305/sum_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ripemd160/ripemd160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ripemd160/ripemd160.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/salsa20/salsa20.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa20_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/salsa20/salsa20_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/keccakf_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/sha3_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/xor_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor_unaligned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/sha3/xor_unaligned.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/client_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/keyring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/keyring_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/agent/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/client_auth_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/streamlocal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/streamlocal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/dial_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/test/dial_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/test/session_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/test_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/test/test_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/test/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/ssh/transport_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/twofish/twofish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/twofish/twofish.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/twofish/twofish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/twofish/twofish_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/xtea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/xtea/xtea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/README -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/errors_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/errors_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/syscall_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsysnum_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/dev_darwin_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/dev_linux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/file_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/linux/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mkall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/linux/mkall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mksysnum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/linux/mksysnum.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/linux/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/mmap_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/openbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/asm_windows_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/registry/key.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/registry/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/registry/value.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/security_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/security_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/debug/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/debug/log.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/eventlog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/eventlog/log.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/example/beep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/example/beep.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/example/main.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/mgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/mgr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/security.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/svc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/svc_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/sys_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/sys_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/sys_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/svc/sys_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/golang.org/x/sys/windows/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/example_copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/example_copy_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/example_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/format.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/format_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pb.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pb_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pb_appengine.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pb_nix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pb_nix.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pb_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pb_solaris.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pb_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pb_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pb_win.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pb_x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pb_x.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pool.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pool_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pool_win.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/pool_x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/pool_x.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/reader.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/runecount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/runecount.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/runecount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/runecount_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/termios_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/termios_bsd.go -------------------------------------------------------------------------------- /vendor/gopkg.in/cheggaaa/pb.v1/termios_nix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/cheggaaa/pb.v1/termios_nix.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/altsrc/altsrc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/altsrc/altsrc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/altsrc/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/altsrc/flag.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/altsrc/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/altsrc/flag_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/app.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/app_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/appveyor.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/category.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/cli.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/command.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/command_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/context.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/context_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/errors.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/errors_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/flag-types.json -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/flag.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/flag_generated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/flag_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/funcs.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/generate-flag-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/generate-flag-types -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/help.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/help_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/helpers_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/helpers_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/helpers_unix_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/vendor/gopkg.in/urfave/cli.v1/runtests -------------------------------------------------------------------------------- /workstation/w_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/workstation/w_darwin.go -------------------------------------------------------------------------------- /workstation/w_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/workstation/w_linux.go -------------------------------------------------------------------------------- /workstation/w_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/workstation/w_windows.go -------------------------------------------------------------------------------- /workstation/workstation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xshellinc/iotit/HEAD/workstation/workstation.go --------------------------------------------------------------------------------