mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00

- Define LWS_DLL and LWS_INTERNAL when websockets_shared is compiled. - The websocket_shared target compiles to websocket.lib / websocket.dll (websocket.lib contains the exported functions for websocket.dll, and is the file that is linked to when a program wants to use the dll) - The websocket target compiles to websocket_static.lib on windows. - Replaced any "extern" with "LWS_EXTERN" on libwebsockets.h for proper DLL function exports. - Created a LIB_LIST with all the libwebsocket dependencies, instead of multiple calls to target_link_libraries, only one call is made for both the static and shared library version. This makes it easy to add other variants if wanted in the future. - Added ZLIB as a dependency for the libs, so that the build order will be correct at all times. - Added a dependency for the websockets lib to the test apps, so it is built before them. - Fixed the test-server-extpoll app to include the emulated_poll, and link to winsock on Windows. - Removed the global export of libwebsocket_internal_extensions, and added a function libwebsocket_get_internal_extensions() that returns it instead. Using the global would not work with the DLL export on Windows.
33 lines
725 B
C
33 lines
725 B
C
#include "private-libwebsockets.h"
|
|
|
|
#include "extension-deflate-frame.h"
|
|
#include "extension-deflate-stream.h"
|
|
|
|
struct libwebsocket_extension libwebsocket_internal_extensions[] = {
|
|
#ifdef LWS_EXT_DEFLATE_STREAM
|
|
{
|
|
"deflate-stream",
|
|
lws_extension_callback_deflate_stream,
|
|
sizeof(struct lws_ext_deflate_stream_conn)
|
|
},
|
|
#else
|
|
{
|
|
"x-webkit-deflate-frame",
|
|
lws_extension_callback_deflate_frame,
|
|
sizeof(struct lws_ext_deflate_frame_conn)
|
|
},
|
|
{
|
|
"deflate-frame",
|
|
lws_extension_callback_deflate_frame,
|
|
sizeof(struct lws_ext_deflate_frame_conn)
|
|
},
|
|
#endif
|
|
{ /* terminator */
|
|
NULL, NULL, 0
|
|
}
|
|
};
|
|
|
|
struct libwebsocket_extension *libwebsocket_get_internal_extensions()
|
|
{
|
|
return libwebsocket_internal_extensions;
|
|
}
|