VirtualBox

Ignore:
Timestamp:
Jul 29, 2009 2:09:25 PM (15 years ago)
Author:
vboxsync
Message:

NAT: globals

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/libalias/alias_ftp.c

    r20958 r21864  
    150150mod_handler(module_t mod, int type, void *data)
    151151#else
    152 static int ftp_alias_handler(int type);
     152static int ftp_alias_handler(PNATState pData, int type);
    153153
    154154int
    155 ftp_alias_load(void)
    156 {
    157     return ftp_alias_handler(MOD_LOAD);
     155ftp_alias_load(PNATState pData)
     156{
     157    return ftp_alias_handler(pData, MOD_LOAD);
    158158}
    159159
    160160int
    161 ftp_alias_unload(void)
    162 {
    163     return ftp_alias_handler(MOD_UNLOAD);
     161ftp_alias_unload(PNATState pData)
     162{
     163    return ftp_alias_handler(pData, MOD_UNLOAD);
    164164}
    165165static int
    166 ftp_alias_handler(int type)
     166ftp_alias_handler(PNATState pData, int type)
    167167#endif
    168168{
     
    180180    case MOD_LOAD:
    181181        error = 0;
     182#ifdef VBOX
     183        LibAliasAttachHandlers(pData, handlers);
     184#else
    182185        LibAliasAttachHandlers(handlers);
     186#endif
    183187        break;
    184188    case MOD_UNLOAD:
    185189        error = 0;
     190#ifdef VBOX
     191        LibAliasDetachHandlers(pData, handlers);
     192#else
    186193        LibAliasDetachHandlers(handlers);
     194#endif
    187195        break;
    188196    default:
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette