Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created May 14, 2018 12:19
Show Gist options
  • Save ryantm/275cfa6377f77e502dcc0309bb683687 to your computer and use it in GitHub Desktop.
Save ryantm/275cfa6377f77e502dcc0309bb683687 to your computer and use it in GitHub Desktop.
/nix/store/k21v52qac99ppn2ba80ywki05cv6m65r-ccnet-6.1.8
├── bin
│   ├── ccnet
│   └── ccnet-init
├── include
│   ├── ccnet
│   │   ├── async-rpc-proc.h
│   │   ├── ccnet-client.h
│   │   ├── ccnet-object.h
│   │   ├── ccnetrpc-transport.h
│   │   ├── ccnet-session-base.h
│   │   ├── cevent.h
│   │   ├── invoke-service-proc.h
│   │   ├── job-mgr.h
│   │   ├── message.h
│   │   ├── mqclient-proc.h
│   │   ├── option.h
│   │   ├── packet.h
│   │   ├── peer.h
│   │   ├── processor.h
│   │   ├── proc-factory.h
│   │   ├── rpcserver-proc.h
│   │   ├── sendcmd-proc.h
│   │   ├── status-code.h
│   │   ├── threaded-rpcserver-proc.h
│   │   ├── timer.h
│   │   └── valid-check.h
│   └── ccnet.h
├── lib
│   ├── libccnet.la
│   ├── libccnet.so -> libccnet.so.0.0.0
│   ├── libccnet.so.0 -> libccnet.so.0.0.0
│   ├── libccnet.so.0.0.0
│   ├── pkgconfig
│   │   └── libccnet.pc
│   └── python2.7
│   └── site-packages
│   └── ccnet
│   ├── async
│   │   ├── async_client.py
│   │   ├── async_client.pyc
│   │   ├── async_client.pyo
│   │   ├── __init__.py
│   │   ├── __init__.pyc
│   │   ├── __init__.pyo
│   │   ├── mqclientproc.py
│   │   ├── mqclientproc.pyc
│   │   ├── mqclientproc.pyo
│   │   ├── processor.py
│   │   ├── processor.pyc
│   │   ├── processor.pyo
│   │   ├── rpcserverproc.py
│   │   ├── rpcserverproc.pyc
│   │   ├── rpcserverproc.pyo
│   │   ├── sendcmdproc.py
│   │   ├── sendcmdproc.pyc
│   │   ├── sendcmdproc.pyo
│   │   ├── timer.py
│   │   ├── timer.pyc
│   │   └── timer.pyo
│   ├── client.py
│   ├── client.pyc
│   ├── client.pyo
│   ├── errors.py
│   ├── errors.pyc
│   ├── errors.pyo
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── __init__.pyo
│   ├── message.py
│   ├── message.pyc
│   ├── message.pyo
│   ├── packet.py
│   ├── packet.pyc
│   ├── packet.pyo
│   ├── pool.py
│   ├── pool.pyc
│   ├── pool.pyo
│   ├── rpc.py
│   ├── rpc.pyc
│   ├── rpc.pyo
│   ├── status_code.py
│   ├── status_code.pyc
│   ├── status_code.pyo
│   ├── sync_client.py
│   ├── sync_client.pyc
│   ├── sync_client.pyo
│   ├── utils.py
│   ├── utils.pyc
│   └── utils.pyo
└── nix-support
└── propagated-build-inputs
10 directories, 81 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment