diff options
Diffstat (limited to 'libc/netbsd')
-rw-r--r-- | libc/netbsd/resolv/res_send.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc/netbsd/resolv/res_send.c b/libc/netbsd/resolv/res_send.c index 2f131f1..72a7ada 100644 --- a/libc/netbsd/resolv/res_send.c +++ b/libc/netbsd/resolv/res_send.c @@ -1147,6 +1147,9 @@ retry: * XXX - potential security hazard could * be detected here. */ +#ifdef ANDROID_CHANGES + __libc_android_log_event_uid(BIONIC_EVENT_RESOLVER_OLD_RESPONSE); +#endif DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), (stdout, ";; old answer:\n"), @@ -1160,6 +1163,9 @@ retry: * XXX - potential security hazard could * be detected here. */ +#ifdef ANDROID_CHANGES + __libc_android_log_event_uid(BIONIC_EVENT_RESOLVER_WRONG_SERVER); +#endif DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), (stdout, ";; not our server:\n"), @@ -1190,6 +1196,9 @@ retry: * XXX - potential security hazard could * be detected here. */ +#ifdef ANDROID_CHANGES + __libc_android_log_event_uid(BIONIC_EVENT_RESOLVER_WRONG_QUERY); +#endif DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), (stdout, ";; wrong query name:\n"), |