Package lib :: Package cuckoo :: Package common :: Module constants
[hide private]
[frames] | no frames]

Source Code for Module lib.cuckoo.common.constants

 1  # Copyright (C) 2010-2015 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  _current_dir = os.path.abspath(os.path.dirname(__file__)) 
 8  CUCKOO_ROOT = os.path.normpath(os.path.join(_current_dir, "..", "..", "..")) 
 9   
10  CUCKOO_VERSION = "1.2-dev" 
11  CUCKOO_GUEST_PORT = 8000 
12  CUCKOO_GUEST_INIT = 0x001 
13  CUCKOO_GUEST_RUNNING = 0x002 
14  CUCKOO_GUEST_COMPLETED = 0x003 
15  CUCKOO_GUEST_FAILED = 0x004 
16