Changeset 5312:27ec111dc8c5 in roaraudio for plugins


Ignore:
Timestamp:
11/30/11 01:05:41 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added support for seperate contextes for roardl/plugins. Currently incudes error state and a global per handle data segment. This does not work for statically linked librarys (yet). support for per-context notify core needs to be added/completed.

Location:
plugins
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • plugins/roard/protocol-irc.c

    r5310 r5312  
    865865 
    866866static struct roard_proto proto[1] = { 
    867  {ROAR_PROTO_IRC, ROAR_SUBSYS_NONE, "Internet Relay Chat", new_client, check_client, NULL, NULL} 
     867 {ROAR_PROTO_IRC, ROAR_SUBSYS_NONE, "Internet Relay Chat", NULL, new_client, check_client, NULL, NULL} 
    868868}; 
    869869 
  • plugins/universal/protocol-daytime.c

    r5303 r5312  
    5959 
    6060static struct roard_proto proto[1] = { 
    61  {ROAR_PROTO_DAYTIME, ROAR_SUBSYS_NONE, "The Internet daytime protocol", new_client, NULL, NULL, flushed_client} 
     61 {ROAR_PROTO_DAYTIME, ROAR_SUBSYS_NONE, "The Internet daytime protocol", NULL, new_client, NULL, NULL, flushed_client} 
    6262}; 
    6363 
  • plugins/universal/protocol-discard.c

    r5275 r5312  
    4242 
    4343static struct roard_proto proto[1] = { 
    44  {ROAR_PROTO_DISCARD, ROAR_SUBSYS_NONE, "Discard all data send to the server", NULL, check_client, NULL, NULL} 
     44 {ROAR_PROTO_DISCARD, ROAR_SUBSYS_NONE, "Discard all data send to the server", NULL, NULL, check_client, NULL, NULL} 
    4545}; 
    4646 
  • plugins/universal/protocol-echo.c

    r5303 r5312  
    5757 
    5858static struct roard_proto proto[1] = { 
    59  {ROAR_PROTO_ECHO, ROAR_SUBSYS_NONE, "Send all data send to the server back to the client", NULL, check_client, NULL, NULL} 
     59 {ROAR_PROTO_ECHO, ROAR_SUBSYS_NONE, "Send all data send to the server back to the client", NULL, NULL, check_client, NULL, NULL} 
    6060}; 
    6161 
Note: See TracChangeset for help on using the changeset viewer.