diff --git a/plugins/experimental/CMakeLists.txt b/plugins/experimental/CMakeLists.txt index 9e5cfc25b9d..0dae5154a24 100644 --- a/plugins/experimental/CMakeLists.txt +++ b/plugins/experimental/CMakeLists.txt @@ -21,17 +21,21 @@ add_subdirectory(cert_reporting_tool) add_subdirectory(cookie_remap) add_subdirectory(custom_redirect) add_subdirectory(fq_pacing) +add_subdirectory(geoip_acl) add_subdirectory(header_freq) add_subdirectory(hook-trace) add_subdirectory(http_stats) add_subdirectory(icap) add_subdirectory(inliner) add_subdirectory(maxmind_acl) +add_subdirectory(memcache) add_subdirectory(memory_profile) add_subdirectory(money_trace) add_subdirectory(mp4) +add_subdirectory(rate_limit) add_subdirectory(redo_cache_lookup) add_subdirectory(slice) add_subdirectory(stream_editor) add_subdirectory(system_stats) add_subdirectory(tls_bridge) +add_subdirectory(url_sig) diff --git a/plugins/experimental/geoip_acl/CMakeLists.txt b/plugins/experimental/geoip_acl/CMakeLists.txt new file mode 100644 index 00000000000..4b5fe26f5d9 --- /dev/null +++ b/plugins/experimental/geoip_acl/CMakeLists.txt @@ -0,0 +1,22 @@ +####################### +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor license +# agreements. See the NOTICE file distributed with this work for additional information regarding +# copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. See the License for the specific language governing permissions and limitations under +# the License. +# +####################### + +add_atsplugin(geoip_acl + geoip_acl.cc + acl.cc +) +target_link_libraries(geoip_acl PRIVATE PCRE::PCRE) diff --git a/plugins/experimental/memcache/CMakeLists.txt b/plugins/experimental/memcache/CMakeLists.txt new file mode 100644 index 00000000000..c5db5b0227c --- /dev/null +++ b/plugins/experimental/memcache/CMakeLists.txt @@ -0,0 +1,26 @@ +####################### +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor license +# agreements. See the NOTICE file distributed with this work for additional information regarding +# copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. See the License for the specific language governing permissions and limitations under +# the License. +# +####################### + +add_atsplugin(memcache tsmemcache.cc) + +get_target_property(EVENT_INCLUDES ts::inkevent INCLUDE_DIRECTORIES) +get_target_property(NET_INCLUDES ts::inknet INCLUDE_DIRECTORIES) + +target_include_directories(memcache PRIVATE + $ + $ + $) diff --git a/plugins/experimental/rate_limit/CMakeLists.txt b/plugins/experimental/rate_limit/CMakeLists.txt new file mode 100644 index 00000000000..4e14921b378 --- /dev/null +++ b/plugins/experimental/rate_limit/CMakeLists.txt @@ -0,0 +1,26 @@ +####################### +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor license +# agreements. See the NOTICE file distributed with this work for additional information regarding +# copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. See the License for the specific language governing permissions and limitations under +# the License. +# +####################### + +add_atsplugin(rate_limit + ip_reputation.cc + rate_limit.cc + sni_limiter.cc + sni_selector.cc + txn_limiter.cc + utilities.cc +) +target_link_libraries(rate_limit PRIVATE OpenSSL::SSL) diff --git a/plugins/experimental/url_sig/CMakeLists.txt b/plugins/experimental/url_sig/CMakeLists.txt new file mode 100644 index 00000000000..e4ac652614d --- /dev/null +++ b/plugins/experimental/url_sig/CMakeLists.txt @@ -0,0 +1,19 @@ +####################### +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor license +# agreements. See the NOTICE file distributed with this work for additional information regarding +# copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. See the License for the specific language governing permissions and limitations under +# the License. +# +####################### + +add_atsplugin(url_sig url_sig.cc) +target_link_libraries(url_sig PRIVATE OpenSSL::SSL PCRE::PCRE)