1*b0e753ddSGordon Ross# 2*b0e753ddSGordon Ross# This file and its contents are supplied under the terms of the 3*b0e753ddSGordon Ross# Common Development and Distribution License ("CDDL"), version 1.0. 4*b0e753ddSGordon Ross# You may only use this file in accordance with the terms of version 5*b0e753ddSGordon Ross# 1.0 of the CDDL. 6*b0e753ddSGordon Ross# 7*b0e753ddSGordon Ross# A full copy of the text of the CDDL should have accompanied this 8*b0e753ddSGordon Ross# source. A copy of the CDDL is also available via the Internet at 9*b0e753ddSGordon Ross# http://www.illumos.org/license/CDDL. 10*b0e753ddSGordon Ross# 11*b0e753ddSGordon Ross 12*b0e753ddSGordon Ross# 13*b0e753ddSGordon Ross# Copyright 2015 Nexenta Systems, Inc. All rights reserved. 14*b0e753ddSGordon Ross# 15*b0e753ddSGordon Ross 16*b0e753ddSGordon Ross# 17*b0e753ddSGordon Ross# These are the symbols in Apache (httpd) that this module needs 18*b0e753ddSGordon Ross# to bind with. By explicitly telling the linker these are external, 19*b0e753ddSGordon Ross# we can detect any other binding problems at link time. 20*b0e753ddSGordon Ross# 21*b0e753ddSGordon Ross 22*b0e753ddSGordon Ross$mapfile_version 2 23*b0e753ddSGordon Ross 24*b0e753ddSGordon RossSYMBOL_SCOPE { 25*b0e753ddSGordon Ross core_module { TYPE = data; FLAGS = extern }; 26*b0e753ddSGordon Ross 27*b0e753ddSGordon Ross ap_discard_request_body { TYPE = function; FLAGS = extern }; 28*b0e753ddSGordon Ross ap_get_client_block { TYPE = function; FLAGS = extern }; 29*b0e753ddSGordon Ross ap_get_remote_host { TYPE = function; FLAGS = extern }; 30*b0e753ddSGordon Ross ap_get_server_name { TYPE = function; FLAGS = extern }; 31*b0e753ddSGordon Ross ap_get_server_port { TYPE = function; FLAGS = extern }; 32*b0e753ddSGordon Ross ap_hook_default_port { TYPE = function; FLAGS = extern }; 33*b0e753ddSGordon Ross ap_hook_handler { TYPE = function; FLAGS = extern }; 34*b0e753ddSGordon Ross ap_hook_http_scheme { TYPE = function; FLAGS = extern }; 35*b0e753ddSGordon Ross ap_log_rerror { TYPE = function; FLAGS = extern }; 36*b0e753ddSGordon Ross ap_rwrite { TYPE = function; FLAGS = extern }; 37*b0e753ddSGordon Ross ap_setup_client_block { TYPE = function; FLAGS = extern }; 38*b0e753ddSGordon Ross ap_should_client_block { TYPE = function; FLAGS = extern }; 39*b0e753ddSGordon Ross 40*b0e753ddSGordon Ross apr_os_sock_get { TYPE = function; FLAGS = extern }; 41*b0e753ddSGordon Ross apr_palloc { TYPE = function; FLAGS = extern }; 42*b0e753ddSGordon Ross apr_table_get { TYPE = function; FLAGS = extern }; 43*b0e753ddSGordon Ross}; 44