[Client] # This is the secret key used by the server to encrypt messages sent to the client # It *must be* 16, 24 or 32 bytes long !!! ENC_KEY=difousdf7834gfdf # Control code, used to verify the identity of the server CONTROL_CODE=OkCode4456 # Padding character. Messages sent to the client must be a multiple of 16 in length, so # padding may be necessary PAD_CHAR=X # Maximum wep key length. Don't change this value unless you know what you're doing MAX_KEY_LEN=13 # Server address, for example 192.168.1.1 SERVER=localhost # Server port PORT=11000 # Timeout in seconds for socket operations SOCKET_TIMEOUT=10 # Ping interval in seconds SLEEP_TIME=15 # Reset wep key. This is the default wep key used by the server and the client when they're not # synchronized DEFAULT_KEY=0123456789012 # Time (in seconds) to wait before resetting the wep key to the default one MAX_SERVER_TIMEOUT=60 # Time (in seconds) to wait before changing the key when the client receives the new one from the server KEY_CHANGE_DELAY=10 # Client type: # 0 = Linux # 1 = Windows XP SP2 CLIENT_TYPE=0 # Wireless interface; used only under linux INTERFACE=wlan0