| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2007 The FFmpeg Project | 2 * Copyright (c) 2007 The FFmpeg Project |
| 3 * | 3 * |
| 4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
| 5 * | 5 * |
| 6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 int ff_getnameinfo(const struct sockaddr *sa, int salen, | 144 int ff_getnameinfo(const struct sockaddr *sa, int salen, |
| 145 char *host, int hostlen, | 145 char *host, int hostlen, |
| 146 char *serv, int servlen, int flags); | 146 char *serv, int servlen, int flags); |
| 147 const char *ff_gai_strerror(int ecode); | 147 const char *ff_gai_strerror(int ecode); |
| 148 #define getaddrinfo ff_getaddrinfo | 148 #define getaddrinfo ff_getaddrinfo |
| 149 #define freeaddrinfo ff_freeaddrinfo | 149 #define freeaddrinfo ff_freeaddrinfo |
| 150 #define getnameinfo ff_getnameinfo | 150 #define getnameinfo ff_getnameinfo |
| 151 #define gai_strerror ff_gai_strerror | 151 #define gai_strerror ff_gai_strerror |
| 152 #endif | 152 #endif |
| 153 | 153 |
| 154 #ifndef INET6_ADDRSTRLEN |
| 155 #define INET6_ADDRSTRLEN INET_ADDRSTRLEN |
| 156 #endif |
| 157 |
| 154 #endif /* AVFORMAT_NETWORK_H */ | 158 #endif /* AVFORMAT_NETWORK_H */ |
| OLD | NEW |