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-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