Session file format:
--------------------

Data types:
-----------

	I = sizeof(int)
	n = string length (including the \0)

Format:
-------

    Bytes		Description
    -----		-----------
    	I		session manager version
	I		length of system name (including the \0)
	n		system name (zero-terminated)
	I		length of machine name (including the \0)
	n		machine name (zero-terminated)
	I		number of clients

[Clients]

	I		length of clientID (including the \0)
	n		clientID (zero-terminated)
	I		length of clientHostname (including the \0)
	n		clientHostname (zero-terminated)
	I		number of properties

[Properties]

	I		length of name (including the \0)
	n		name (zero-terminated)
	I		length of type (including the \0)
	n		type (zero-terminated)
	I		number of values

[Values]

	I		length of value
	n		value

[/Values]

[/Properties]

[/Clients]
