Cada dia es una batalla mas
This commit is contained in:
parent
d4708f35f9
commit
65428aad14
151 changed files with 617 additions and 465 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: if_gif.c,v 1.137 2024/01/01 18:47:02 mvs Exp $ */
|
||||
/* $OpenBSD: if_gif.c,v 1.138 2024/05/13 01:15:53 jsg Exp $ */
|
||||
/* $KAME: if_gif.c,v 1.43 2001/02/20 08:51:07 itojun Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -127,8 +127,6 @@ int gif_down(struct gif_softc *);
|
|||
int gif_set_tunnel(struct gif_softc *, struct if_laddrreq *);
|
||||
int gif_get_tunnel(struct gif_softc *, struct if_laddrreq *);
|
||||
int gif_del_tunnel(struct gif_softc *);
|
||||
int in_gif_output(struct ifnet *, int, struct mbuf **);
|
||||
int in6_gif_output(struct ifnet *, int, struct mbuf **);
|
||||
int gif_input(struct gif_tunnel *, struct mbuf **, int *, int, int,
|
||||
uint8_t);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: if_mpw.c,v 1.65 2023/12/23 10:52:54 bluhm Exp $ */
|
||||
/* $OpenBSD: if_mpw.c,v 1.66 2024/05/13 01:15:53 jsg Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2015 Rafael Zalamena <rzalamena@openbsd.org>
|
||||
|
@ -17,7 +17,6 @@
|
|||
*/
|
||||
|
||||
#include "bpfilter.h"
|
||||
#include "vlan.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -40,10 +39,6 @@
|
|||
#include <net/bpf.h>
|
||||
#endif /* NBPFILTER */
|
||||
|
||||
#if NVLAN > 0
|
||||
#include <net/if_vlan_var.h>
|
||||
#endif
|
||||
|
||||
struct mpw_neighbor {
|
||||
struct shim_hdr n_rshim;
|
||||
struct sockaddr_storage n_nexthop;
|
||||
|
@ -75,9 +70,6 @@ int mpw_ioctl(struct ifnet *, u_long, caddr_t);
|
|||
int mpw_output(struct ifnet *, struct mbuf *, struct sockaddr *,
|
||||
struct rtentry *);
|
||||
void mpw_start(struct ifnet *);
|
||||
#if NVLAN > 0
|
||||
struct mbuf *mpw_vlan_handle(struct mbuf *, struct mpw_softc *);
|
||||
#endif /* NVLAN */
|
||||
|
||||
struct if_clone mpw_cloner =
|
||||
IF_CLONE_INITIALIZER("mpw", mpw_clone_create, mpw_clone_destroy);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: if_pfsync.h,v 1.61 2023/07/31 11:13:10 dlg Exp $ */
|
||||
/* $OpenBSD: if_pfsync.h,v 1.62 2024/05/13 01:15:53 jsg Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Michael Shalayeff
|
||||
|
@ -318,7 +318,6 @@ int pfsync_sysctl(int *, u_int, void *, size_t *,
|
|||
#define PFSYNC_SI_CKSUM 0x02
|
||||
#define PFSYNC_SI_ACK 0x04
|
||||
#define PFSYNC_SI_PFSYNC 0x08
|
||||
int pfsync_state_import(struct pfsync_state *, int);
|
||||
void pfsync_state_export(struct pfsync_state *,
|
||||
struct pf_state *);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: if_spppsubr.c,v 1.192 2023/11/10 15:51:24 bluhm Exp $ */
|
||||
/* $OpenBSD: if_spppsubr.c,v 1.193 2024/05/13 01:15:53 jsg Exp $ */
|
||||
/*
|
||||
* Synchronous PPP link level subroutines.
|
||||
*
|
||||
|
@ -234,9 +234,6 @@ void sppp_cp_input(const struct cp *cp, struct sppp *sp,
|
|||
struct mbuf *m);
|
||||
void sppp_cp_send(struct sppp *sp, u_short proto, u_char type,
|
||||
u_char ident, u_short len, void *data);
|
||||
#ifdef notyet
|
||||
void sppp_cp_timeout(void *arg);
|
||||
#endif
|
||||
void sppp_cp_change_state(const struct cp *cp, struct sppp *sp,
|
||||
int newstate);
|
||||
void sppp_auth_send(const struct cp *cp,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: if_trunk.h,v 1.30 2020/07/22 02:16:02 dlg Exp $ */
|
||||
/* $OpenBSD: if_trunk.h,v 1.31 2024/05/13 01:15:53 jsg Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006, 2007 Reyk Floeter <reyk@openbsd.org>
|
||||
|
@ -249,7 +249,6 @@ struct trunk_lb {
|
|||
struct trunk_port *lb_ports[TRUNK_MAX_PORTS];
|
||||
};
|
||||
|
||||
int trunk_enqueue(struct ifnet *, struct mbuf *);
|
||||
u_int32_t trunk_hashmbuf(struct mbuf *, SIPHASH_KEY *);
|
||||
#endif /* _KERNEL */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: if_vlan_var.h,v 1.46 2023/04/26 00:14:21 jan Exp $ */
|
||||
/* $OpenBSD: if_vlan_var.h,v 1.47 2024/05/13 01:15:53 jsg Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 1998 Massachusetts Institute of Technology
|
||||
|
@ -49,7 +49,6 @@ struct vlanreq {
|
|||
#ifdef _KERNEL
|
||||
struct mbuf *vlan_input(struct ifnet *, struct mbuf *, unsigned int *);
|
||||
struct mbuf *vlan_inject(struct mbuf *, uint16_t, uint16_t);
|
||||
void vlan_flags_from_parent(struct ifnet *, int);
|
||||
#endif /* _KERNEL */
|
||||
|
||||
#endif /* _NET_IF_VLAN_VAR_H_ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: pf_ioctl.c,v 1.416 2024/04/22 13:30:22 bluhm Exp $ */
|
||||
/* $OpenBSD: pf_ioctl.c,v 1.417 2024/05/13 01:15:53 jsg Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Daniel Hartmeier
|
||||
|
@ -89,7 +89,6 @@
|
|||
struct pool pf_tag_pl;
|
||||
|
||||
void pfattach(int);
|
||||
void pf_thread_create(void *);
|
||||
int pfopen(dev_t, int, int, struct proc *);
|
||||
int pfclose(dev_t, int, int, struct proc *);
|
||||
int pfioctl(dev_t, u_long, caddr_t, int, struct proc *);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: pfkeyv2.h,v 1.94 2023/08/07 03:35:06 dlg Exp $ */
|
||||
/* $OpenBSD: pfkeyv2.h,v 1.95 2024/05/13 01:15:53 jsg Exp $ */
|
||||
/*
|
||||
* @(#)COPYRIGHT 1.1 (NRL) January 1998
|
||||
*
|
||||
|
@ -428,7 +428,6 @@ int pfkeyv2_dump_walker(struct tdb *, void *, int);
|
|||
int pfkeyv2_get_proto_alg(u_int8_t, u_int8_t *, int *);
|
||||
int pfkeyv2_sysctl(int *, u_int, void *, size_t *, void *, size_t);
|
||||
int pfkeyv2_sysctl_walker(struct tdb *, void *, int);
|
||||
int pfkeyv2_sysctl_dump(void *);
|
||||
|
||||
int pfdatatopacket(void *, int, struct mbuf **);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: pfvar.h,v 1.537 2024/05/12 08:31:05 jsg Exp $ */
|
||||
/* $OpenBSD: pfvar.h,v 1.538 2024/05/13 01:15:53 jsg Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001 Daniel Hartmeier
|
||||
|
@ -1603,7 +1603,6 @@ extern void pf_tbladdr_remove(struct pf_addr_wrap *);
|
|||
extern void pf_tbladdr_copyout(struct pf_addr_wrap *);
|
||||
extern void pf_calc_skip_steps(struct pf_rulequeue *);
|
||||
extern void pf_purge_expired_src_nodes(void);
|
||||
extern void pf_purge_expired_rules(void);
|
||||
extern void pf_remove_state(struct pf_state *);
|
||||
extern void pf_remove_divert_state(struct inpcb *);
|
||||
extern void pf_free_state(struct pf_state *);
|
||||
|
@ -1636,7 +1635,6 @@ extern void pf_cksum_fixup(u_int16_t *, u_int16_t,
|
|||
u_int16_t, u_int8_t);
|
||||
void pf_rm_rule(struct pf_rulequeue *,
|
||||
struct pf_rule *);
|
||||
void pf_purge_rule(struct pf_rule *);
|
||||
struct pf_divert *pf_find_divert(struct mbuf *);
|
||||
int pf_setup_pdesc(struct pf_pdesc *, sa_family_t,
|
||||
int, struct pfi_kif *, struct mbuf *,
|
||||
|
@ -1659,7 +1657,6 @@ int pf_patch_32(struct pf_pdesc *, u_int32_t *, u_int32_t);
|
|||
int pf_patch_32_unaligned(struct pf_pdesc *, void *, u_int32_t, bool);
|
||||
int pflog_packet(struct pf_pdesc *, u_int8_t, struct pf_rule *,
|
||||
struct pf_rule *, struct pf_ruleset *, struct pf_rule *);
|
||||
void pf_send_deferred_syn(struct pf_state *);
|
||||
int pf_match_addr(u_int8_t, struct pf_addr *, struct pf_addr *,
|
||||
struct pf_addr *, sa_family_t);
|
||||
int pf_match_addr_range(struct pf_addr *, struct pf_addr *,
|
||||
|
@ -1827,7 +1824,6 @@ struct pf_ruleset *pf_find_ruleset(const char *);
|
|||
struct pf_ruleset *pf_get_leaf_ruleset(char *, char **);
|
||||
struct pf_anchor *pf_create_anchor(struct pf_anchor *, const char *);
|
||||
struct pf_ruleset *pf_find_or_create_ruleset(const char *);
|
||||
void pf_rs_initialize(void);
|
||||
void pf_anchor_rele(struct pf_anchor *);
|
||||
struct pf_anchor *pf_anchor_take(struct pf_anchor *);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: rtable.h,v 1.29 2024/04/09 12:53:08 claudio Exp $ */
|
||||
/* $OpenBSD: rtable.h,v 1.30 2024/05/13 01:15:53 jsg Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2014-2016 Martin Pieuchot
|
||||
|
@ -55,8 +55,6 @@ int rtable_walk(unsigned int, sa_family_t, struct rtentry **,
|
|||
int (*)(struct rtentry *, void *, unsigned int), void *);
|
||||
|
||||
int rtable_mpath_capable(unsigned int, sa_family_t);
|
||||
struct rtentry *rtable_mpath_match(unsigned int, struct rtentry *,
|
||||
struct sockaddr *, uint8_t);
|
||||
int rtable_mpath_reprio(unsigned int, struct sockaddr *, int,
|
||||
uint8_t, struct rtentry *);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue