| 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify |
| 3 | * it under the terms of the GNU General Public License version 2 as |
| 4 | * published by the Free Software Foundation, or (at your option) any |
| 5 | * later version. See the COPYING file in the top-level directory. |
| 6 | */ |
| 7 | |
| 8 | #ifndef PPC_SOCKBITS_H |
| 9 | #define PPC_SOCKBITS_H |
| 10 | |
| 11 | #include "../generic/sockbits.h" |
| 12 | |
| 13 | #undef TARGET_SO_RCVLOWAT |
| 14 | #define TARGET_SO_RCVLOWAT 16 |
| 15 | #undef TARGET_SO_SNDLOWAT |
| 16 | #define TARGET_SO_SNDLOWAT 17 |
| 17 | #undef TARGET_SO_RCVTIMEO |
| 18 | #define TARGET_SO_RCVTIMEO 18 |
| 19 | #undef TARGET_SO_SNDTIMEO |
| 20 | #define TARGET_SO_SNDTIMEO 19 |
| 21 | #undef TARGET_SO_PASSCRED |
| 22 | #define TARGET_SO_PASSCRED 20 |
| 23 | #undef TARGET_SO_PEERCRED |
| 24 | #define TARGET_SO_PEERCRED 21 |
| 25 | |
| 26 | #endif |