Trees | Indices | Help |
|
---|
|
1 # Copyright (C) 2010-2014 Cuckoo Foundation. 2 # This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org 3 # See the file 'docs/LICENSE' for copying permission. 4 5 import os 6 7 8 _current_dir = os.path.abspath(os.path.dirname(__file__)) 9 CUCKOO_ROOT = os.path.normpath(os.path.join(_current_dir, "..", "..", "..")) 10 11 CUCKOO_VERSION = "1.1" 12 CUCKOO_GUEST_PORT = 8000 13 CUCKOO_GUEST_INIT = 0x001 14 CUCKOO_GUEST_RUNNING = 0x002 15 CUCKOO_GUEST_COMPLETED = 0x003 16 CUCKOO_GUEST_FAILED = 0x004 17
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Apr 7 13:27:49 2014 | http://epydoc.sourceforge.net |