📄 packet.h
字号:
#ifndef FR_PACKET_H#define FR_PACKET_H/* * packet.h Structures and prototypes * for packet manipulation * * Version: $Id: packet.h,v 1.6 2008/02/16 09:20:05 aland Exp $ * * 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; either version 2 of the License, or * (at your option) any later version. * * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * * Copyright 2001,2002,2003,2004,2005,2006 The FreeRADIUS server project */#include <freeradius-devel/ident.h>RCSIDH(packet_h, "$Id: packet.h,v 1.6 2008/02/16 09:20:05 aland Exp $")uint32_t fr_request_packet_hash(const RADIUS_PACKET *packet);uint32_t fr_reply_packet_hash(const RADIUS_PACKET *packet);int fr_packet_cmp(const RADIUS_PACKET *a, const RADIUS_PACKET *b);void fr_request_from_reply(RADIUS_PACKET *request, const RADIUS_PACKET *reply);int fr_socket(fr_ipaddr_t *ipaddr, int port);typedef struct fr_packet_list_t fr_packet_list_t;fr_packet_list_t *fr_packet_list_create(int alloc_id);void fr_packet_list_free(fr_packet_list_t *pl);int fr_packet_list_insert(fr_packet_list_t *pl, RADIUS_PACKET **request_p);RADIUS_PACKET **fr_packet_list_find(fr_packet_list_t *pl, RADIUS_PACKET *request);RADIUS_PACKET **fr_packet_list_find_byreply(fr_packet_list_t *pl, RADIUS_PACKET *reply);RADIUS_PACKET **fr_packet_list_yank(fr_packet_list_t *pl, RADIUS_PACKET *request);int fr_packet_list_num_elements(fr_packet_list_t *pl);int fr_packet_list_id_alloc(fr_packet_list_t *pl, RADIUS_PACKET *request);int fr_packet_list_id_free(fr_packet_list_t *pl, RADIUS_PACKET *request);int fr_packet_list_socket_add(fr_packet_list_t *pl, int sockfd);int fr_packet_list_socket_remove(fr_packet_list_t *pl, int sockfd);int fr_packet_list_walk(fr_packet_list_t *pl, void *ctx, fr_hash_table_walk_t callback);int fr_packet_list_fd_set(fr_packet_list_t *pl, fd_set *set);RADIUS_PACKET *fr_packet_list_recv(fr_packet_list_t *pl, fd_set *set);int fr_packet_list_num_incoming(fr_packet_list_t *pl);int fr_packet_list_num_outgoing(fr_packet_list_t *pl);/* * "find" returns a pointer to the RADIUS_PACKET* member in the * caller's structure. In order to get the pointer to the *top* * of the caller's structure, you have to subtract the offset to * the member from the returned pointer, and cast it to the * required type. */# define fr_packet2myptr(TYPE, MEMBER, PTR) (TYPE *) (((char *)PTR) - offsetof(TYPE, MEMBER))#endif /* FR_PACKET_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -