Jan Vidar Krey
b81bb2cbd9
Cleaned up all list iterations, added macro named LIST_FOREACH.
...
Previously you would have to do something like this:
for (type foo = (type) list_get_first(list); foo; foo = (type) list_get_next(list)
{
/* code */
}
Now, you can instead write this as:
LIST_FOREACH(type, foo, list,
{
/* code */
})
Basically, boilerplate stuff including the casting is gone.
2013-03-22 00:58:14 +01:00
Jan Vidar Krey
d4763e54db
Fixed memory leaks.
2012-10-25 04:13:45 +02:00
Jan Vidar Krey
b34b90f95a
Start using the async DNS API.
2012-10-24 23:22:10 +02:00
Jan Vidar Krey
cb6236691b
Added more functionality to the ADC client test code.
2012-10-02 23:59:11 +02:00
Jan Vidar Krey
089966d918
Fix ADC client send queue.
2012-10-03 11:44:07 +02:00
Jan Vidar Krey
5b4467acd5
Minor stuff on the uhub-admin tool based on the changes in the ADC client code.
2012-09-28 15:52:39 +02:00
Jan Vidar Krey
ba26f4c5e2
Update copyright notices and added licenses to files that were missing it.
2011-12-19 10:54:47 +01:00
Jan Vidar Krey
318163c066
Added support for dynamic commands.
...
Dynamic commands are user commands that can be added dynamically to
the hub by a plugin.
The example plugin (mod_example.c) adds a !example command that when
invoked send a message to the user who invoked it.
2011-12-09 10:29:50 +01:00
Jan Vidar Krey
9981acca08
Supply sid with user information in adcclient test code.
2011-11-30 12:32:59 +01:00
Jan Vidar Krey
99e644597d
Cleaned up the ADC client test code.
...
Now works with ADCS (not very well tested, though)
2011-11-29 16:39:09 +01:00
Jan Vidar Krey
2f09fcea84
Added select() backend which can be used as a fallback if epoll is not available.
2010-01-20 18:39:55 +01:00
Jan Vidar Krey
255255ff20
Allow for command line specified host.
2009-10-06 18:16:38 +02:00
Jan Vidar Krey
310ddf4e9d
More work on the ADC client lib.
2009-10-06 12:39:31 +02:00
Jan Vidar Krey
4ca5caa52b
Various fixes, the admin tool at least compiles and runs.
2009-08-28 18:05:58 +02:00
Jan Vidar Krey
11b288a669
Various build fixes.
2009-08-28 16:04:45 +02:00
Jan Vidar Krey
52cbec24b6
Started splitting up ADC rush. Need a test client before we can proceed anyway.
2009-08-28 14:29:19 +02:00