mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
Add Websocketpp a C++ implementation of the Websocket protocol
This commit is contained in:
parent
0b390aaabe
commit
3357d4793f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=373759
@ -4807,6 +4807,7 @@
|
||||
SUBDIR += vtcl
|
||||
SUBDIR += vxlog
|
||||
SUBDIR += wand-libconfig
|
||||
SUBDIR += websocketpp
|
||||
SUBDIR += websvn
|
||||
SUBDIR += wininfo
|
||||
SUBDIR += winpdb
|
||||
|
20
devel/websocketpp/Makefile
Normal file
20
devel/websocketpp/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= websocketpp
|
||||
PORTVERSION= 0.4.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= arved@FreeBSD.org
|
||||
COMMENT= Header only implementation of the WebSocket protocol
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= zaphoyd
|
||||
GH_PROJECT= websocketpp
|
||||
GH_TAGNAME= 0.4.0
|
||||
GH_COMMIT= 802e34b
|
||||
USES= cmake
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/websocketpp/distinfo
Normal file
2
devel/websocketpp/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (websocketpp-0.4.0.tar.gz) = 0e21d29b7b21009f6fe6930a2fb4898e71e41b0c5b77ef6a578ffa5f6d2f4e5b
|
||||
SIZE (websocketpp-0.4.0.tar.gz) = 628705
|
8
devel/websocketpp/pkg-descr
Normal file
8
devel/websocketpp/pkg-descr
Normal file
@ -0,0 +1,8 @@
|
||||
WebSocket++ is an open source (BSD license) header only C++ library that
|
||||
implements RFC6455 The WebSocket Protocol.
|
||||
|
||||
It allows integrating WebSocket client and server functionality into
|
||||
C++ programs. It uses interchangable network transport modules including
|
||||
one based on C++ iostreams and one based on Boost Asio.
|
||||
|
||||
WWW: http://www.zaphoyd.com/websocketpp/
|
89
devel/websocketpp/pkg-plist
Normal file
89
devel/websocketpp/pkg-plist
Normal file
@ -0,0 +1,89 @@
|
||||
include/websocketpp/base64/base64.hpp
|
||||
include/websocketpp/client.hpp
|
||||
include/websocketpp/close.hpp
|
||||
include/websocketpp/common/chrono.hpp
|
||||
include/websocketpp/common/connection_hdl.hpp
|
||||
include/websocketpp/common/cpp11.hpp
|
||||
include/websocketpp/common/functional.hpp
|
||||
include/websocketpp/common/md5.hpp
|
||||
include/websocketpp/common/memory.hpp
|
||||
include/websocketpp/common/network.hpp
|
||||
include/websocketpp/common/platforms.hpp
|
||||
include/websocketpp/common/random.hpp
|
||||
include/websocketpp/common/regex.hpp
|
||||
include/websocketpp/common/stdint.hpp
|
||||
include/websocketpp/common/system_error.hpp
|
||||
include/websocketpp/common/thread.hpp
|
||||
include/websocketpp/common/time.hpp
|
||||
include/websocketpp/concurrency/basic.hpp
|
||||
include/websocketpp/concurrency/none.hpp
|
||||
include/websocketpp/config/asio.hpp
|
||||
include/websocketpp/config/asio_client.hpp
|
||||
include/websocketpp/config/asio_no_tls.hpp
|
||||
include/websocketpp/config/asio_no_tls_client.hpp
|
||||
include/websocketpp/config/boost_config.hpp
|
||||
include/websocketpp/config/core.hpp
|
||||
include/websocketpp/config/core_client.hpp
|
||||
include/websocketpp/config/debug.hpp
|
||||
include/websocketpp/config/debug_asio.hpp
|
||||
include/websocketpp/config/debug_asio_no_tls.hpp
|
||||
include/websocketpp/config/minimal_client.hpp
|
||||
include/websocketpp/config/minimal_server.hpp
|
||||
include/websocketpp/connection.hpp
|
||||
include/websocketpp/connection_base.hpp
|
||||
include/websocketpp/endpoint.hpp
|
||||
include/websocketpp/endpoint_base.hpp
|
||||
include/websocketpp/error.hpp
|
||||
include/websocketpp/error_container.hpp
|
||||
include/websocketpp/extensions/extension.hpp
|
||||
include/websocketpp/extensions/permessage_deflate/disabled.hpp
|
||||
include/websocketpp/extensions/permessage_deflate/enabled.hpp
|
||||
include/websocketpp/frame.hpp
|
||||
include/websocketpp/http/constants.hpp
|
||||
include/websocketpp/http/impl/parser.hpp
|
||||
include/websocketpp/http/impl/request.hpp
|
||||
include/websocketpp/http/impl/response.hpp
|
||||
include/websocketpp/http/parser.hpp
|
||||
include/websocketpp/http/request.hpp
|
||||
include/websocketpp/http/response.hpp
|
||||
include/websocketpp/impl/connection_impl.hpp
|
||||
include/websocketpp/impl/endpoint_impl.hpp
|
||||
include/websocketpp/impl/utilities_impl.hpp
|
||||
include/websocketpp/logger/basic.hpp
|
||||
include/websocketpp/logger/levels.hpp
|
||||
include/websocketpp/logger/stub.hpp
|
||||
include/websocketpp/message_buffer/alloc.hpp
|
||||
include/websocketpp/message_buffer/message.hpp
|
||||
include/websocketpp/message_buffer/pool.hpp
|
||||
include/websocketpp/processors/base.hpp
|
||||
include/websocketpp/processors/hybi00.hpp
|
||||
include/websocketpp/processors/hybi07.hpp
|
||||
include/websocketpp/processors/hybi08.hpp
|
||||
include/websocketpp/processors/hybi13.hpp
|
||||
include/websocketpp/processors/processor.hpp
|
||||
include/websocketpp/random/none.hpp
|
||||
include/websocketpp/random/random_device.hpp
|
||||
include/websocketpp/roles/client_endpoint.hpp
|
||||
include/websocketpp/roles/server_endpoint.hpp
|
||||
include/websocketpp/server.hpp
|
||||
include/websocketpp/sha1/sha1.hpp
|
||||
include/websocketpp/transport/asio/base.hpp
|
||||
include/websocketpp/transport/asio/connection.hpp
|
||||
include/websocketpp/transport/asio/endpoint.hpp
|
||||
include/websocketpp/transport/asio/security/base.hpp
|
||||
include/websocketpp/transport/asio/security/none.hpp
|
||||
include/websocketpp/transport/asio/security/tls.hpp
|
||||
include/websocketpp/transport/base/connection.hpp
|
||||
include/websocketpp/transport/base/endpoint.hpp
|
||||
include/websocketpp/transport/iostream/base.hpp
|
||||
include/websocketpp/transport/iostream/connection.hpp
|
||||
include/websocketpp/transport/iostream/endpoint.hpp
|
||||
include/websocketpp/transport/stub/base.hpp
|
||||
include/websocketpp/transport/stub/connection.hpp
|
||||
include/websocketpp/transport/stub/endpoint.hpp
|
||||
include/websocketpp/uri.hpp
|
||||
include/websocketpp/utf8_validator.hpp
|
||||
include/websocketpp/utilities.hpp
|
||||
include/websocketpp/version.hpp
|
||||
lib/cmake/websocketpp/websocketpp-config.cmake
|
||||
lib/cmake/websocketpp/websocketpp-configVersion.cmake
|
Loading…
Reference in New Issue
Block a user