Skip to content

Commit

Permalink
Add a prefix to the fork name, and link to the upstream repo
Browse files Browse the repository at this point in the history
  • Loading branch information
reyzell committed Feb 19, 2025
1 parent 850f90b commit 34c9d84
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
authors = ["Loïc Damien <[email protected]>"]
name = "netlink-packet-netfilter"
name = "reyzell-netlink-packet-netfilter"
version = "0.2.0"
edition = "2018"

homepage = "https://github.com/rust-netlink/netlink-packet-netfilter"
homepage = "https://github.com/reyzell/netlink-packet-netfilter"
keywords = ["netlink", "linux", "netfilter"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rust-netlink/netlink-packet-netfilter"
repository = "https://github.com/reyzell/netlink-packet-netfilter"
description = "netlink packet types for the netfilter subprotocol"

[dependencies]
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Rust netlink packet types for the netfilter subprotocol

This is a temporary fork of `netlink-packet-netfilter` [a] until conntrack
support is merged in.

[a] https://github.com/rust-netlink/netlink-packet-netfilter
2 changes: 1 addition & 1 deletion examples/nfconntrack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// 3) Perform network activity from your host, which would result in conntrack updates:
// curl http://example.com

use netlink_packet_netfilter::{
use reyzell_netlink_packet_netfilter::{
constants::{NFNLGRP_CONNTRACK_NEW, NFNLGRP_CONNTRACK_DESTROY},
nfconntrack::{
nlas::{ConnectionProperties, ConnectionTuple},
Expand Down
2 changes: 1 addition & 1 deletion examples/nflog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::{net::Ipv4Addr, time::Duration};

use byteorder::{ByteOrder, NetworkEndian};
use netlink_packet_core::{NetlinkMessage, NetlinkPayload};
use netlink_packet_netfilter::{
use reyzell_netlink_packet_netfilter::{
constants::*,
nflog::{
config_request,
Expand Down

0 comments on commit 34c9d84

Please sign in to comment.