You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
/*
* Network interface definitions for the CUPS scheduler.
*
* Copyright © 2007-2010 by Apple Inc.
* Copyright © 1997-2006 by Easy Software Products, all rights reserved.
*
* Licensed under Apache License v2.0. See the file "LICENSE" for more
* information.
*/
/*
* Structures...
*/
typedef struct cupsd_netif_s /**** Network interface data ****/
{
int is_local , /* Local (not point-to-point) interface? */
port ; /* Listen port */
http_addr_t address , /* Network address */
mask , /* Network mask */
broadcast ; /* Broadcast address */
size_t hostlen ; /* Length of hostname */
char name [ 32 ] , /* Network interface name */
hostname [ 1 ] ; /* Hostname associated with interface */
} cupsd_netif_t ;
/*
* Globals...
*/
VAR int NetIFUpdate VALUE ( 1 ) ;
/* Network interface list needs updating */
VAR cups_array_t * NetIFList VALUE ( NULL ) ;
/* Array of network interfaces */
/*
* Prototypes...
*/
extern cupsd_netif_t * cupsdNetIFFind ( const char * name ) ;
extern void cupsdNetIFUpdate ( void ) ;