VirtualBox

Changeset 15204 in vbox for trunk/src/VBox/Devices/Network


Ignore:
Timestamp:
Dec 9, 2008 9:23:54 PM (16 years ago)
Author:
vboxsync
Message:

typo

File:
1 edited

Legend:

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

    r15203 r15204  
    1212
    1313#if !defined(VBOX_WITH_SIMPLIFIED_SLIRP_SYNC) || !defined(RT_OS_WINDOWS)
     14
     15# define DO_ENGAGE_EVENT1(so, fdset, label)          \
     16    do {                                             \
     17        FD_SET((so)->s, (fdset));                    \
     18        UPD_NFDS((so)->s);                           \
     19    } while(0)
     20
     21
     22# define DO_ENGAGE_EVENT2(so, fdset1, fdset2, label) \
     23    do {                                             \
     24        FD_SET((so)->s, (fdset1));                   \
     25        FD_SET((so)->s, (fdset2));                   \
     26        UPD_NFDS((so)->s);                           \
     27    } while(0)
    1428
    1529# ifdef VBOX_WITH_SLIRP_ICMP
     
    1933#  define ICMP_ENGAGE_EVENT(so, fdset1, fdset2)      \
    2034    /* no ICMP socket */
    21 #endif /* !VBOX_WITH_SLIRP_ICMP */
    22 
    23 # define DO_ENGAGE_EVENT1(so, fdset, label)          \
    24     do {                                             \
    25         FD_SET((so)->s, (fdset));                    \
    26         UPD_NFDS((so)->s);                           \
    27     } while(0)
    28 
    29 
    30 # define DO_ENGAGE_EVENT2(so, fdset1, fdset2, label) \
    31     do {                                             \
    32         FD_SET((so)->s, (fdset1));                   \
    33         FD_SET((so)->s, (fdset2));                   \
    34         UPD_NFDS((so)->s);                           \
    35     } while(0)
     35# endif /* !VBOX_WITH_SLIRP_ICMP */
    3636
    3737#else /* defined(VBOX_WITH_SIMPLIFIED_SLIRP_SYNC) && defined(RT_OS_WINDOWS) */
     
    5757
    5858# define DO_ENGAGE_EVENT2(so, fdset1, fdset2, label) \
    59     O_ENGAGE_EVENT1((so), (fdset1), label)
     59    DO_ENGAGE_EVENT1((so), (fdset1), label)
    6060
    6161#endif /* defined(VBOX_WITH_SIMPLIFIED_SLIRP_SYNC) && defined(RT_OS_WINDOWS) */
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