Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
60a06fbd
Commit
60a06fbd
authored
7 years ago
by
Jenkins2
Committed by
Gerrit Code Review
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge "core: Remove dead symbols from asterisk.exports.in."
parents
f863f1f9
de77cf86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/asterisk/options.h
+0
-2
0 additions, 2 deletions
include/asterisk/options.h
main/asterisk.exports.in
+1
-5
1 addition, 5 deletions
main/asterisk.exports.in
tests/test_amihooks.c
+2
-1
2 additions, 1 deletion
tests/test_amihooks.c
with
3 additions
and
8 deletions
include/asterisk/options.h
+
0
−
2
View file @
60a06fbd
...
...
@@ -202,8 +202,6 @@ extern struct timeval ast_lastreloadtime;
extern
pid_t
ast_mainpid
;
extern
char
record_cache_dir
[
AST_CACHE_DIR_LEN
];
extern
char
dahdi_chan_name
[
AST_CHANNEL_NAME
];
extern
int
dahdi_chan_name_len
;
extern
int
ast_language_is_prefix
;
...
...
This diff is collapsed.
Click to expand it.
main/asterisk.exports.in
+
1
−
5
View file @
60a06fbd
...
...
@@ -13,9 +13,6 @@
LINKER_SYMBOL_PREFIX__ao2_*;
LINKER_SYMBOL_PREFIXoption_debug;
LINKER_SYMBOL_PREFIXoption_verbose;
LINKER_SYMBOL_PREFIXdahdi_chan_name;
LINKER_SYMBOL_PREFIXdahdi_chan_name_len;
LINKER_SYMBOL_PREFIXdahdi_chan_mode;
LINKER_SYMBOL_PREFIXcallerid_*;
LINKER_SYMBOL_PREFIXcid_di;
LINKER_SYMBOL_PREFIXcid_dr;
...
...
@@ -30,8 +27,6 @@
LINKER_SYMBOL_PREFIXterm_*;
LINKER_SYMBOL_PREFIXchannelreloadreason2txt;
LINKER_SYMBOL_PREFIXdevstate2str;
LINKER_SYMBOL_PREFIX__manager_event;
LINKER_SYMBOL_PREFIXdialed_interface_info;
LINKER_SYMBOL_PREFIXstrsep;
LINKER_SYMBOL_PREFIXsetenv;
LINKER_SYMBOL_PREFIXstasis_*;
...
...
@@ -49,6 +44,7 @@
LINKER_SYMBOL_PREFIXres_srtp;
LINKER_SYMBOL_PREFIXres_srtp_policy;
LINKER_SYMBOL_PREFIXsecure_call_info;
/* __progname and environ are needed by FreeBSD for bundled pjproject. */
LINKER_SYMBOL_PREFIX__progname;
LINKER_SYMBOL_PREFIXenviron;
/*
...
...
This diff is collapsed.
Click to expand it.
tests/test_amihooks.c
+
2
−
1
View file @
60a06fbd
...
...
@@ -90,7 +90,8 @@ AST_TEST_DEFINE(amihook_cli_send)
return
wait_for_hook
(
test
)
?
AST_TEST_FAIL
:
AST_TEST_PASS
;
}
/* The helper function is required by struct manager_custom_hook. See __manager_event for details */
/* The helper function is required by struct manager_custom_hook.
* See __ast_manager_event_multichan for details */
static
int
amihook_helper
(
int
category
,
const
char
*
event
,
char
*
content
)
{
ast_log
(
LOG_NOTICE
,
"AMI Event:
\n
Category: %d Event: %s
\n
%s
\n
"
,
category
,
event
,
content
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment