mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
18 years ago | |
|---|---|---|
| .. | ||
| etc | 19 years ago | |
| wav | 19 years ago | |
| Makefile | 19 years ago | |
| Readme.webconference | 19 years ago | |
| RoomInfo.cpp | 19 years ago | |
| RoomInfo.h | 19 years ago | |
| WebConference.cpp | 18 years ago | |
| WebConference.h | 19 years ago | |
Readme.webconference
webconference : conference with dial-in and dial-out over DI (xmlrpc)
This conference module can do dial-in, dial-out and mixed
dial-in/dial-out conferences. It can be controlled over DI functions
from other modules, and, for example, using the xmlrpc2di module,
the conference rooms can be controlled via XMLRPC.
It implements conference rooms with dial-in and conference room entry
via DTMF, and authenticated dial-out.
For dial-in, usually the user is asked to enter the conference room
number via keypad, followed by the star key.
In the configuration, a regular expression can be defined (direct_room_re),
which, if matched to the user part of the request uri, connects the caller
directly to the conference room. direct_room_strip sets how many characters
should be stripped from the user part in order to obtain the conference room
number.
Participants can be listed, kicked out, muted and unmuted over DI
(using xmlrpc2di over XMLRPC).
implemented DI functions:
----
roomCreate(string room):
int code, string result, string adminpin
code/result:
0 OK
1 room already open
----
roomInfo(string room, string adminpin):
int code, string result, list<participant> participants
participant: string call_tag, string number, int status, string reason, int muted
status:
0 Disconnected
1 Connecting
2 Ringing
3 Connected
4 Disconnecting
reason: e.g. "200 OK", "606 Declined", ...
code/result:
0 OK
1 wrong adminpin
----
dialout(string room, string adminpin, string callee,
string from_user, string domain,
string auth_user, string auth_realm, string auth_pwd) :
int code, string result, string callid
code/result:
0 OK
1 wrong adminpin
2 failed
----
kickout(string room, string adminpin, string call_tag) :
int code, string result
code/result:
0 OK
1 wrong adminpin
2 call does not exist in room
----
mute(string room, string adminpin, string call_tag) :
int code, string result
code/result:
0 OK
1 wrong adminpin
2 call does not exist in room
----
unmute(string room, string adminpin, string call_tag) :
int code, string result
code/result:
0 OK
1 wrong adminpin
2 call does not exist in room
----
serverInfo():
string name,
int load,
int cpu
----