/* * scamper_fds: manage events for file descriptors * * $Id: scamper_fds.h,v 1.11 2007/05/07 23:36:26 mjl Exp $ * * Matthew Luckie * * Supported by: * The University of Waikato * NLANR Measurement and Network Analysis * CAIDA * The WIDE Project * * Copyright (C) 2004-2007 The University of Waikato * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef __SCAMPER_FD_H #define __SCAMPER_FD_H /* data structure type */ typedef struct scamper_fd scamper_fd_t; /* when an event occurs, this is the format of the callback used */ typedef void (*scamper_fd_cb_t)(const int fd, void *param); /* these functions allocate reference to a socket shared throughout scamper */ scamper_fd_t *scamper_fd_icmp4(void); scamper_fd_t *scamper_fd_icmp6(void); scamper_fd_t *scamper_fd_udp4(uint16_t sport); scamper_fd_t *scamper_fd_udp6(uint16_t sport); scamper_fd_t *scamper_fd_tcp4(uint16_t sport); scamper_fd_t *scamper_fd_tcp6(uint16_t sport); scamper_fd_t *scamper_fd_dl(int ifindex); scamper_fd_t *scamper_fd_rtsock(void); /* return information on what the socket is bound to */ int scamper_fd_ifindex(const scamper_fd_t *fdn, int *ifindex); int scamper_fd_sport(const scamper_fd_t *fdn, uint16_t *sport); /* this function allocates a socket that is exclusively held by the caller */ scamper_fd_t *scamper_fd_private(int fd, scamper_fd_cb_t read_cb, void *read_param, scamper_fd_cb_t write_cb, void *write_param); /* * this function reduces the reference count of the fdn, and closes the fd * if there are no remaining references */ void scamper_fd_free(scamper_fd_t *fdn); /* get/set the fd associated with the structure */ int scamper_fd_fd_get(const scamper_fd_t *fdn); int scamper_fd_fd_set(scamper_fd_t *fdn, int fd); /* functions to temporarily unmonitor a fd, and then have it rejoin */ void scamper_fd_read_pause(scamper_fd_t *fdn); void scamper_fd_read_unpause(scamper_fd_t *fdn); void scamper_fd_write_pause(scamper_fd_t *fdn); void scamper_fd_write_unpause(scamper_fd_t *fdn); /* functions to set the callbacks used. only works for private fds */ void scamper_fd_read_set(scamper_fd_t *fdn, scamper_fd_cb_t cb, void *param); void scamper_fd_write_set(scamper_fd_t *fdn, scamper_fd_cb_t cb, void *param); void *scamper_fd_read_state(scamper_fd_t *fdn); void *scamper_fd_write_state(scamper_fd_t *fdn); /* function to check the status of all file descriptors managed */ int scamper_fds_poll(struct timeval *timeout); /* functions used to initialise or cleanup the fd monitoring state */ int scamper_fds_init(void); void scamper_fds_cleanup(void); #endif /* __SCAMPER_FD_H */