--- deliantra/server/include/traits.h 2006/12/15 19:59:20 1.6 +++ deliantra/server/include/traits.h 2006/12/20 09:14:22 1.8 @@ -1,6 +1,7 @@ #ifndef TRAITS_H__ #define TRAITS_H__ +struct client_container; struct client; struct player; struct object; @@ -23,7 +24,7 @@ DT_DATA, // string + length DT_OBJECT, DT_MAP, - DT_SOCKET, + DT_CLIENT, DT_PLAYER, DT_ARCH, DT_PARTY, @@ -62,7 +63,7 @@ template<> struct cftype { - static const data_type dt = DT_SOCKET; + static const data_type dt = DT_CLIENT; }; template<>