Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

presence: improvements for 4.4 #486

Merged
merged 3 commits into from
Feb 3, 2016
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 17 additions & 1 deletion lib/srdb1/schema/pr_active_watchers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<table id="active_watchers" xmlns:db="http://docbook.org/ns/docbook">
<name>active_watchers</name>
<version>11</version>
<version>12</version>
<type db="mysql">&MYSQL_TABLE_TYPE;</type>
<description>
<db:para>Table for the presence module. More information can be found at: &KAMAILIO_MOD_DOC;presence.html
Expand Down Expand Up @@ -200,6 +200,22 @@
<description>Update winfo flag</description>
</column>

<column>
<name>flags</name>
<type>int</type>
<size>&flag_len;</size>
<default>0</default>
<description>Branch and contact flags</description>
</column>

<column>
<name>user_agent</name>
<type>string</type>
<size>&hf_len;</size>
<default/>
<description>User-Agent header field contains information about the UAC originating the request.</description>
</column>

<index>
<name>active_watchers_idx</name>
<colref linkend="callid"/>
Expand Down