VirtualBox

Changeset 15209 in vbox for trunk/src


Ignore:
Timestamp:
Dec 9, 2008 10:15:20 PM (16 years ago)
Author:
vboxsync
Message:

slirp: do {} while (0), cosmetics

File:
1 edited

Legend:

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

    r15208 r15209  
    3434    } while (0)
    3535# else /* !VBOX_WITH_SLIRP_ICMP */
    36 #  define ICMP_ENGAGE_EVENT(so, fdset1, fdset2)      \
    37     /* no ICMP socket */
     36#  define ICMP_ENGAGE_EVENT(so, fdset1, fdset2)      do {} while (0)
    3837# endif /* !VBOX_WITH_SLIRP_ICMP */
    3938
     
    4443 * So no call to WSAEventSelect necessary.
    4544 */
    46 # define ICMP_ENGAGE_EVENT(so, fdset1, fdset2) \
    47     /* ignore */
    48 
    49 # define DO_ENGAGE_EVENT1(so, fdset1, label)                                                    \
    50     do {                                                                                        \
    51         rc = WSAEventSelect((so)->s, VBOX_SOCKET_EVENT, FD_ALL_EVENTS);                         \
    52         if (rc == SOCKET_ERROR)                                                                 \
    53         {                                                                                       \
    54             /* This should not happen */                                                        \
    55             error = WSAGetLastError();                                                          \
    56             LogRel(("WSAEventSelector (" #label ") error %d (so=%x, socket=%s, event=%x)\n",    \
    57                         error, (so), (so)->s, VBOX_SOCKET_EVENT));                              \
    58         }                                                                                       \
     45# define ICMP_ENGAGE_EVENT(so, fdset1, fdset2)       do {} while(0)
     46
     47# define DO_ENGAGE_EVENT1(so, fdset1, label)         \
     48    do {                                             \
     49        rc = WSAEventSelect((so)->s, VBOX_SOCKET_EVENT, FD_ALL_EVENTS); \
     50        if (rc == SOCKET_ERROR)                      \
     51        {                                            \
     52            /* This should not happen */             \
     53            error = WSAGetLastError();               \
     54            LogRel(("WSAEventSelector (" #label ") error %d (so=%x, socket=%s, event=%x)\n", \
     55                        error, (so), (so)->s, VBOX_SOCKET_EVENT)); \
     56        }                                            \
    5957    } while(0)
    6058
     
    7371    DO_ENGAGE_EVENT1((so), (fdset), UDP)
    7472
    75 static const uint8_t special_ethaddr[6] = {
     73static const uint8_t special_ethaddr[6] =
     74{
    7675    0x52, 0x54, 0x00, 0x12, 0x35, 0x00
    7776};
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