Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugins/experimental/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
22 changes: 22 additions & 0 deletions plugins/experimental/geoip_acl/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
26 changes: 26 additions & 0 deletions plugins/experimental/memcache/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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
$<TARGET_PROPERTY:ts::inkevent,INCLUDE_DIRECTORIES>
$<TARGET_PROPERTY:ts::inknet,INCLUDE_DIRECTORIES>
$<TARGET_PROPERTY:PCRE::PCRE,INCLUDE_DIRECTORIES>)
26 changes: 26 additions & 0 deletions plugins/experimental/rate_limit/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
19 changes: 19 additions & 0 deletions plugins/experimental/url_sig/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)