diff --git a/server/cache-item.h b/server/cache-item.h index 610d1b8f..e0e1f4c1 100644 --- a/server/cache-item.h +++ b/server/cache-item.h @@ -23,12 +23,6 @@ #include "red-pipe-item.h" -/* pipe item used to release a specific cached item on the client */ -struct RedCachePipeItem { - RedPipeItem base; - uint64_t id; -}; - struct RedCacheItem { RingItem lru_link; RedCacheItem *next; diff --git a/server/common-graphics-channel.h b/server/common-graphics-channel.h index fe235591..c7c91faa 100644 --- a/server/common-graphics-channel.h +++ b/server/common-graphics-channel.h @@ -68,6 +68,12 @@ protected: virtual bool config_socket() override; }; +/* pipe item used to release a specific cached item on the client */ +struct RedCachePipeItem { + RedPipeItem base; + uint64_t id; +}; + #include "pop-visibility.h" #endif /* COMMON_GRAPHICS_CHANNEL_H_ */