mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
64 lines
2.4 KiB
C
64 lines
2.4 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#ifndef MKSELECT_H
|
|
#define MKSELECT_H
|
|
|
|
PR_BEGIN_EXTERN_C
|
|
|
|
extern void NET_SetReadPoll(PRFileDesc *fd);
|
|
|
|
extern void NET_ClearReadPoll(PRFileDesc *fd);
|
|
|
|
extern void NET_SetConnectPoll(PRFileDesc *fd);
|
|
|
|
extern void NET_ClearConnectPoll(PRFileDesc *fd);
|
|
|
|
/* this function turns on and off a reasonably slow timer that will
|
|
* push the netlib along even when it doesn't get any onIdle time.
|
|
* this is unfortunately necessary on windows because when a modal
|
|
* dialog is up it won't call the OnIdle loop which is currently the
|
|
* source of our events.
|
|
*/
|
|
extern void NET_SetNetlibSlowKickTimer(PRBool set);
|
|
|
|
/* set and clear the callnetliballthetime busy poller.
|
|
* all reference counting is done internally
|
|
*
|
|
* the caller string is used in debug builds to detect callers that
|
|
* don't set and clear correctly
|
|
*/
|
|
extern void NET_SetCallNetlibAllTheTime(MWContext *context, char *caller);
|
|
extern void NET_ClearCallNetlibAllTheTime(MWContext *context, char *caller);
|
|
extern PRBool NET_IsCallNetlibAllTheTimeSet(MWContext *context, char *caller);
|
|
|
|
extern void NET_SetReadSelect(MWContext *context, PRFileDesc *file_desc);
|
|
extern void NET_ClearReadSelect(MWContext *context, PRFileDesc *file_desc);
|
|
extern void NET_SetFileReadSelect(MWContext *context, int file_desc);
|
|
extern void NET_ClearFileReadSelect(MWContext *context, int file_desc);
|
|
extern void NET_SetConnectSelect(MWContext *context, PRFileDesc *file_desc);
|
|
extern void NET_ClearConnectSelect(MWContext *context, PRFileDesc *file_desc);
|
|
extern void NET_ClearDNSSelect(MWContext *context, PRFileDesc *file_desc);
|
|
|
|
void net_process_net_timer_callback(void *closure);
|
|
void net_process_slow_net_timer_callback(void *closure);
|
|
|
|
PR_END_EXTERN_C
|
|
|
|
#endif /* MKSELECT_H */
|