Quick Search:

Line History

line history graph

Show Arbitrary Diff

From to

Supports revisions and tags.

History

root: 6645 3494

latest revision download Branch root:

6645 annotated / raw | Diffs: previous, other | Lines: 1370 ( +1, -0 )

Created: 2007-12-11 11:00:43 -0500 (11 months ago) | Author: mikej | Changeset: 6645

fix non-windows build broken by msvc 9 fix.

6630 annotated / raw | Diffs: previous, other | Lines: 1369 ( +5, -3 )

Created: 2007-12-11 05:10:03 -0500 (11 months ago) | Author: mikej | Changeset: 6630

fix for msvc 9 build.

5738 annotated / raw | Diffs: previous, other | Lines: 1367 ( +0, -0 )

Created: 2007-09-21 14:49:14 -0400 (14 months ago) | Author: mikej | Changeset: 5738

svn:eol-style properties, and make eol-style consistent in some files.

4992 annotated / raw | Diffs: previous, other | Lines: 1367 ( +2, -0 )

Created: 2007-04-20 16:59:21 -0400 (19 months ago) | Author: mikej | Changeset: 4992

inline vs __inline for msvc.

4984 annotated / raw | Diffs: previous, other | Lines: 1365 ( +10, -10 )

Created: 2007-04-19 23:51:00 -0400 (19 months ago) | Author: mikej | Changeset: 4984

solaris porting

4942 annotated / raw | Diffs: previous, other | Lines: 1365 ( +1, -0 )

Created: 2007-04-16 10:00:59 -0400 (19 months ago) | Author: mikej | Changeset: 4942

silence windows warning.

4919 annotated / raw | Diffs: previous, other | Lines: 1364 ( +6, -9 )

Created: 2007-04-11 10:37:40 -0400 (19 months ago) | Author: mikej | Changeset: 4919

move udns build directly into the mod_enum makefile so it gets all our cflags

4167 annotated / raw | Diffs: previous, other | Lines: 1367 ( +34, -15 )

Created: 2007-02-08 14:23:36 -0500 (21 months ago) | Author: mikej | Changeset: 4167

fix warnings and some windows compatibility issues in enum/udns

3499 annotated / raw | Diffs: previous, other | Lines: 1348 ( +20, -6 )

Created: 2006-11-30 18:33:37 -0500 (2 years ago) | Author: mikej | Changeset: 3499

win32 build for mod_enum/libudns.  Please note, this builds but still DOES NOT work on windows.

3494 new annotated / raw | Lines: 1334 ( +1334, -0 )

Created: 2006-11-30 16:28:32 -0500 (2 years ago) | Author: anthm | Changeset: 3494

ENUM Support

mod_enum can be used as a dialplan app, an api call from the console or as a dialplan interface.


Dialplan Interface:
put enum as the dialplan parameter in an endpoint module
i.e. instead of "XML" set it to "enum" or "enum,XML" for fall through.

Dialplan App:
This example will do a lookup and set the a variable that is the proper
dialstring to call all of the possible routes in order of preference according to
the lookup and the order of the routes in the enum.conf section.

<extension name="tollfree">
 <condition field="destination_number" expression="^(18(0{2}|8{2}|7{2}|6{2})\d{7})$">
   <action application="enum" data="$1"/>
   <action application="bridge" data="${enum_auto_route}"/>
 </condition>
</extension>

You can also pick an alrernate root:
<action application="enum" data="$1 myroot.org"/>       


API command:
at the console you can say:
enum <number> [<root>]

The root always defaults to the one in the enum.conf section.