This commit is contained in:
GitHub Merge Button 2012-03-19 21:49:08 -07:00
commit e283424bf2
6 changed files with 57 additions and 7 deletions

2
README
View File

@ -4,5 +4,5 @@ For the official documentation, bugs and other information, please visit:
http://www.uhub.org/ http://www.uhub.org/
For a list of compatible ADC clients, see: For a list of compatible ADC clients, see:
http://www.adcportal.com/wiki/index.php/ADC_Software_List#Client_Software http://en.wikipedia.org/wiki/Advanced_Direct_Connect#Client_software

4
debian/changelog vendored
View File

@ -2,13 +2,13 @@ uhub (0.3.2-1) unstable; urgency=low
* Updated upstream version. * Updated upstream version.
-- Jan Vidar Krey <janvidar@extatic.org> Mon 30 May 2010 18:00:00 +0200 -- Jan Vidar Krey <janvidar@extatic.org> Mon, 30 May 2010 18:00:00 +0200
uhub (0.3.1-1) unstable; urgency=low uhub (0.3.1-1) unstable; urgency=low
* Updated version number. * Updated version number.
-- Jan Vidar Krey <janvidar@extatic.org> Mon 04 Apr 2010 16:44:21 +0200 -- Jan Vidar Krey <janvidar@extatic.org> Mon, 04 Apr 2010 16:44:21 +0200
uhub (0.3.0-2) unstable; urgency=low uhub (0.3.0-2) unstable; urgency=low

View File

@ -1,13 +1,13 @@
= Architecture of uHub = = Architecture of uHub =
uHub is single threaded and handles network and timer events using the uHub is single-threaded and handles network and timer events using the
libevent library. libevent library.
For each state there is a read event (and sometimes a write event) and timeout For each state there is a read event (and sometimes a write event) and timeout
event in case an expected read (or write) event does not occur. event in case an expected read (or write) event does not occur.
== Protocol overview == == Protocol overview ==
uHub use "speak" the ADC protocol, which works in short as follows: uHub "speaks" the ADC protocol, which works in short as follows:
(C = client, S = server aka uHub). (C = client, S = server aka uHub).
C: HSUP ADBASE C: HSUP ADBASE

View File

@ -1,7 +1,7 @@
How to compile: How to compile:
--------------- ---------------
See the official compiling howto: http://www.extatic.org/uhub/compile.html See the official compiling howto: http://www.uhub.org/compile.php
Prerequisites Prerequisites

View File

@ -31,7 +31,7 @@ The hub should send a packet containing the token back:
'IECH {token} {host:port}', aswell as the same message via TCP. 'IECH {token} {host:port}', aswell as the same message via TCP.
If the client receives the message via UDP, it should now be able to determine the type of NAT. If the client receives the message via UDP, it should now be able to determine the type of NAT.
If the client receives the message via TCP only it knows it has a firewall blocking icomming communication. If the client receives the message via TCP only it knows it has a firewall blocking incomming communication.
If the client does not receive the message, it should assume a firewall is blocking all UDP communication, If the client does not receive the message, it should assume a firewall is blocking all UDP communication,
and resume in passive mode. and resume in passive mode.

View File

@ -827,6 +827,54 @@ static int command_password(struct command_base* cbase, struct hub_user* user, s
return command_status(cbase, user, cmd, buf); return command_status(cbase, user, cmd, buf);
} }
static int command_topic(struct command_base* cbase, struct hub_user* user, struct hub_command* cmd)
{
struct hub_info* hub = cbase->hub;
char* hastopic = list_get_first(cmd->args);
size_t offset = 7; // strlen("!topic ")
// if no topic has been specified, reset to config
char* escaped_desc = adc_msg_escape(hastopic ? (cmd->message + offset) : hub->config->hub_description);
adc_msg_replace_named_argument(hub->command_info, ADC_INF_FLAG_DESCRIPTION, escaped_desc);
// broadcast new hub description
struct adc_message* command = adc_msg_construct(ADC_CMD_IINF, strlen(escaped_desc) + 8);
adc_msg_add_named_argument(command, ADC_INF_FLAG_DESCRIPTION, escaped_desc);
route_to_all(hub, command);
adc_msg_free(command);
hub_free(escaped_desc);
struct cbuffer* buf = cbuf_create_const("Topic updated");
return command_status(cbase, user, cmd, buf);
}
static int command_showtopic(struct command_base* cbase, struct hub_user* user, struct hub_command* cmd)
{
struct hub_info* hub = cbase->hub;
char* msg1 = adc_msg_escape("The current topic is: ");
char* msg2 = adc_msg_get_named_argument(hub->command_info, ADC_INF_FLAG_DESCRIPTION);
size_t msg_len = strlen(msg1) + strlen(msg2);
char* message = hub_malloc(msg_len + 1);
uhub_assert(message != NULL);
strcpy(message, msg1);
strcat(message, msg2);
struct adc_message* command = adc_msg_construct(ADC_CMD_IMSG, (msg_len + 6));
adc_msg_add_argument(command, message);
// Send reply
route_to_user(hub, user, command);
hub_free(msg1);
hub_free(msg2);
hub_free(message);
adc_msg_free(command);
return 0;
}
static int command_useradd(struct command_base* cbase, struct hub_user* user, struct hub_command* cmd) static int command_useradd(struct command_base* cbase, struct hub_user* user, struct hub_command* cmd)
{ {
struct cbuffer* buf = cbuf_create(128); struct cbuffer* buf = cbuf_create(128);
@ -936,6 +984,8 @@ void commands_builtin_add(struct command_base* cbase)
ADD_COMMAND("register", 8, "p", auth_cred_guest, command_register, "Register your username." ); ADD_COMMAND("register", 8, "p", auth_cred_guest, command_register, "Register your username." );
ADD_COMMAND("reload", 6, "", auth_cred_admin, command_reload, "Reload configuration files." ); ADD_COMMAND("reload", 6, "", auth_cred_admin, command_reload, "Reload configuration files." );
ADD_COMMAND("password", 8, "p", auth_cred_user, command_password, "Change your own password." ); ADD_COMMAND("password", 8, "p", auth_cred_user, command_password, "Change your own password." );
ADD_COMMAND("topic", 5, "?m",auth_cred_operator, command_topic, "Set or clear the hub topic." );
ADD_COMMAND("showtopic", 9, "", auth_cred_guest, command_showtopic,"Show the current hub topic." );
ADD_COMMAND("shutdown", 8, "", auth_cred_admin, command_shutdown_hub, "Shutdown hub." ); ADD_COMMAND("shutdown", 8, "", auth_cred_admin, command_shutdown_hub, "Shutdown hub." );
ADD_COMMAND("stats", 5, "", auth_cred_super, command_stats, "Show hub statistics." ); ADD_COMMAND("stats", 5, "", auth_cred_super, command_stats, "Show hub statistics." );
ADD_COMMAND("unban", 5, "n", auth_cred_operator, command_unban, "Lift ban on a user" ); ADD_COMMAND("unban", 5, "n", auth_cred_operator, command_unban, "Lift ban on a user" );