Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created May 11, 2020 03:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/5de7943eb5c34ec32b45d519d373a932 to your computer and use it in GitHub Desktop.
Save r-ryantm/5de7943eb5c34ec32b45d519d373a932 to your computer and use it in GitHub Desktop.
/nix/store/859vw12qbd87g72jfq5ydqs1nfr0h3lg-znc-1.8.0
├── bin
│   ├── znc
│   └── znc-buildmod
├── include
│   └── znc
│   ├── Buffer.h
│   ├── Chan.h
│   ├── Client.h
│   ├── Config.h
│   ├── Csocket.h
│   ├── defines.h
│   ├── ExecSock.h
│   ├── FileUtils.h
│   ├── HTTPSock.h
│   ├── IRCNetwork.h
│   ├── IRCSock.h
│   ├── Listener.h
│   ├── main.h
│   ├── MD5.h
│   ├── Message.h
│   ├── Modules.h
│   ├── Nick.h
│   ├── Query.h
│   ├── Server.h
│   ├── SHA256.h
│   ├── Socket.h
│   ├── SSLVerifyHost.h
│   ├── Template.h
│   ├── Threads.h
│   ├── Translation.h
│   ├── User.h
│   ├── Utils.h
│   ├── version.h
│   ├── WebModules.h
│   ├── zncconfig.h
│   ├── ZNCDebug.h
│   ├── znc.h
│   └── ZNCString.h
├── lib
│   ├── pkgconfig
│   │   └── znc.pc
│   └── znc
│   ├── admindebug.so
│   ├── adminlog.so
│   ├── alias.so
│   ├── autoattach.so
│   ├── autocycle.so
│   ├── autoop.so
│   ├── autoreply.so
│   ├── autovoice.so
│   ├── awaynick.so
│   ├── awaystore.so
│   ├── block_motd.so
│   ├── blockuser.so
│   ├── bouncedcc.so
│   ├── buffextras.so
│   ├── certauth.so
│   ├── cert.so
│   ├── chansaver.so
│   ├── clearbufferonmsg.so
│   ├── clientnotify.so
│   ├── controlpanel.so
│   ├── crypt.so
│   ├── ctcpflood.so
│   ├── cyrusauth.so
│   ├── dcc.so
│   ├── disconkick.so
│   ├── fail2ban.so
│   ├── flooddetach.so
│   ├── identfile.so
│   ├── imapauth.so
│   ├── keepnick.so
│   ├── kickrejoin.so
│   ├── lastseen.so
│   ├── listsockets.so
│   ├── log.so
│   ├── missingmotd.so
│   ├── modules_online.so
│   ├── nickserv.so
│   ├── notes.so
│   ├── notify_connect.so
│   ├── perform.so
│   ├── raw.so
│   ├── route_replies.so
│   ├── sample.so
│   ├── samplewebapi.so
│   ├── sasl.so
│   ├── savebuff.so
│   ├── schat.so
│   ├── send_raw.so
│   ├── shell.so
│   ├── simple_away.so
│   ├── stickychan.so
│   ├── stripcontrols.so
│   ├── watch.so
│   └── webadmin.so
└── share
├── man
│   └── man1
│   ├── znc.1.gz
│   └── znc-buildmod.1.gz
└── znc
├── modules
│   ├── blockuser
│   │   └── tmpl
│   │   └── blockuser_WebadminUser.tmpl
│   ├── cert
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── certauth
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── lastseen
│   │   └── tmpl
│   │   ├── index.tmpl
│   │   └── lastseen_WebadminUser.tmpl
│   ├── listsockets
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── notes
│   │   ├── files
│   │   │   └── trash.gif
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── perform
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── q
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── samplewebapi
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── sasl
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── send_raw
│   │   ├── files
│   │   │   └── select.js
│   │   └── tmpl
│   │   └── index.tmpl
│   ├── stickychan
│   │   └── tmpl
│   │   ├── index.tmpl
│   │   └── stickychan_WebadminChan.tmpl
│   └── webadmin
│   ├── files
│   │   ├── webadmin.css
│   │   └── webadmin.js
│   └── tmpl
│   ├── add_edit_chan.tmpl
│   ├── add_edit_network.tmpl
│   ├── add_edit_user.tmpl
│   ├── del_network.tmpl
│   ├── del_user.tmpl
│   ├── encoding_settings.tmpl
│   ├── index.tmpl
│   ├── listusers.tmpl
│   ├── settings.tmpl
│   └── traffic.tmpl
└── webskins
├── dark-clouds
│   ├── pub
│   │   ├── clouds-header.jpg
│   │   ├── dark-clouds.css
│   │   └── favicon.ico
│   └── tmpl
│   ├── Banner.tmpl
│   ├── FooterTag.tmpl
│   ├── Header.tmpl
│   └── LowerBanner.tmpl
├── _default_
│   ├── pub
│   │   ├── _default_.css
│   │   ├── External.png
│   │   ├── favicon.ico
│   │   ├── global.css
│   │   ├── jquery-1.11.2.js
│   │   ├── jquery-1.11.2.min.js
│   │   ├── jquery-ui-sortable.1.11.4.css
│   │   ├── jquery-ui-sortable.1.11.4.js
│   │   ├── jquery-ui-sortable.1.11.4.min.css
│   │   ├── jquery-ui-sortable.1.11.4.min.js
│   │   ├── robots.txt
│   │   ├── selectize-0.12.1.css
│   │   ├── selectize-standalone-0.12.1.js
│   │   └── selectize-standalone-0.12.1.min.js
│   └── tmpl
│   ├── Banner.tmpl
│   ├── BaseHeader.tmpl
│   ├── BreadCrumbs.tmpl
│   ├── _csrf_check.tmpl
│   ├── DocType.tmpl
│   ├── Error.tmpl
│   ├── ExtraHeader.tmpl
│   ├── FooterTag.tmpl
│   ├── Footer.tmpl
│   ├── Header.tmpl
│   ├── index.tmpl
│   ├── InfoBar.tmpl
│   ├── LoginBar.tmpl
│   ├── LowerBanner.tmpl
│   ├── Menu.tmpl
│   ├── MessageBar.tmpl
│   └── Options.tmpl
├── forest
│   ├── pub
│   │   ├── favicon.ico
│   │   ├── forest.css
│   │   └── forest-header.png
│   └── tmpl
│   ├── Banner.tmpl
│   ├── FooterTag.tmpl
│   ├── Header.tmpl
│   └── LowerBanner.tmpl
└── ice
├── pub
│   ├── favicon.ico
│   ├── ice.css
│   ├── linkbg.jpg
│   └── pagebg.gif
└── tmpl
├── FooterTag.tmpl
└── Header.tmpl
53 directories, 171 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment