~ubuntu-branches/ubuntu/maverick/krb5/maverick

« back to all changes in this revision

Viewing changes to src/windows/identity/ui/addrchange.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-10-30 10:28:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20061030102853-x7v876vw4af46v0m
Tags: 1.4.4-3ubuntu1
* Merge with Debian; only Ubuntu change:
  - src/include/k5-thread.h: Define__USE_GNU when #include'ing pthread.h to
    fix FTBFS (from 1.4.3-9ubuntu1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2005 Massachusetts Institute of Technology
 
3
 *
 
4
 * Permission is hereby granted, free of charge, to any person
 
5
 * obtaining a copy of this software and associated documentation
 
6
 * files (the "Software"), to deal in the Software without
 
7
 * restriction, including without limitation the rights to use, copy,
 
8
 * modify, merge, publish, distribute, sublicense, and/or sell copies
 
9
 * of the Software, and to permit persons to whom the Software is
 
10
 * furnished to do so, subject to the following conditions:
 
11
 *
 
12
 * The above copyright notice and this permission notice shall be
 
13
 * included in all copies or substantial portions of the Software.
 
14
 *
 
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
18
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 
19
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 
20
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
21
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
22
 * SOFTWARE.
 
23
 */
 
24
 
 
25
/* $Id$ */
 
26
 
 
27
#include<khmapp.h>
 
28
#include<iphlpapi.h>
 
29
 
 
30
static HANDLE evt_terminate = NULL;
 
31
static HANDLE h_thread = NULL;
 
32
 
 
33
DWORD WINAPI
 
34
addr_change_thread(LPVOID dummy) {
 
35
 
 
36
    HANDLE h_waits[2];
 
37
    HANDLE h_notify;
 
38
 
 
39
    OVERLAPPED overlap;
 
40
    DWORD ret;
 
41
 
 
42
    ZeroMemory(&overlap, sizeof(overlap));
 
43
 
 
44
    h_notify = NULL;
 
45
    overlap.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
 
46
 
 
47
    do {
 
48
        ret = NotifyAddrChange(&h_notify, &overlap);
 
49
 
 
50
        if (ret != ERROR_IO_PENDING) {
 
51
            goto _end_thread;   /* some error */
 
52
        }
 
53
 
 
54
        h_waits[0] = overlap.hEvent;
 
55
        h_waits[1] = evt_terminate;
 
56
 
 
57
        ret = WaitForMultipleObjects(2, h_waits, FALSE, INFINITE);
 
58
 
 
59
        if ( ret == WAIT_OBJECT_0 ) {
 
60
            kmq_post_message(KMSG_CRED, KMSG_CRED_ADDR_CHANGE,
 
61
                             0, 0);
 
62
        } else {
 
63
            goto _end_thread;
 
64
        }
 
65
    } while(TRUE);
 
66
    
 
67
 _end_thread:
 
68
    ExitThread(0);
 
69
    return 0;                   /* unreachable */
 
70
}
 
71
 
 
72
void
 
73
khm_addr_change_notifier_init(void) {
 
74
    evt_terminate = CreateEvent(NULL, FALSE, FALSE, NULL);
 
75
    h_thread = CreateThread(NULL,
 
76
                            64 * 4096,
 
77
                            addr_change_thread,
 
78
                            NULL,
 
79
                            0,
 
80
                            NULL);
 
81
}
 
82
 
 
83
void
 
84
khm_addr_change_notifier_exit(void) {
 
85
    if (h_thread && evt_terminate) {
 
86
        SetEvent(evt_terminate);
 
87
        WaitForSingleObject(h_thread, INFINITE);
 
88
 
 
89
        CloseHandle(h_thread);
 
90
        CloseHandle(evt_terminate);
 
91
    }
 
92
}