Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Port Trigger
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Automate
Agent sessions
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
network
Port Trigger
Merge requests
!1
port-triger: added handling for bbf plugin
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
port-triger: added handling for bbf plugin
bbf_plugin_impl
into
devel
Overview
11
Commits
3
Pipelines
4
Changes
4
All threads resolved!
Thread options
Show all comments
Merged
port-triger: added handling for bbf plugin
Amit Kumar
requested to merge
bbf_plugin_impl
into
devel
Jan 16, 2024
Overview
11
Commits
3
Pipelines
4
Changes
4
All threads resolved!
Thread options
Show all comments
added subobject porttrigger in the NAT object of tr181 datamodel.
0
0
Merge request reports
Compare
devel
version 10
4a9b71b4
Feb 28, 2024
version 9
b0b2dbe1
Feb 28, 2024
version 8
f5f3f6fc
Feb 28, 2024
version 7
03a4cc11
Feb 13, 2024
version 6
591305de
Feb 2, 2024
version 5
bd5eedc2
Feb 2, 2024
version 4
6ab2ce67
Jan 19, 2024
version 3
f77eb167
Jan 18, 2024
version 2
84660560
Jan 16, 2024
version 1
5fb91641
Jan 16, 2024
devel (base)
and
latest version
latest version
28b2f1f1
3 commits,
Mar 11, 2024
version 10
4a9b71b4
2 commits,
Feb 28, 2024
version 9
b0b2dbe1
3 commits,
Feb 28, 2024
version 8
f5f3f6fc
2 commits,
Feb 28, 2024
version 7
03a4cc11
1 commit,
Feb 13, 2024
version 6
591305de
1 commit,
Feb 2, 2024
version 5
bd5eedc2
2 commits,
Feb 2, 2024
version 4
6ab2ce67
1 commit,
Jan 19, 2024
version 3
f77eb167
1 commit,
Jan 18, 2024
version 2
84660560
1 commit,
Jan 16, 2024
version 1
5fb91641
1 commit,
Jan 16, 2024
4 files
+
591
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
bbf_plugin/Makefile
0 → 100644
+
21
−
0
View file @ 28b2f1f1
Edit in single-file editor
Open in Web IDE
Show comments on this file
LIB_PORTTRIGGER
:=
libporttrigger.so
OBJS
:=
nat_porttrigger.o
LIB_CFLAGS
=
$(
CFLAGS
)
-Wall
-Werror
-fstrict-aliasing
LIB_LDFLAGS
=
$(
LDFLAGS
)
FPIC
:=
-fPIC
.PHONY
:
all
%.o
:
%.c
$(
CC
)
$(
LIB_CFLAGS
)
$(
FPIC
)
-c
-o
$@
$<
all
:
$(LIB_PORTTRIGGER)
$(LIB_PORTTRIGGER)
:
$(OBJS)
$(
CC
)
$(
LIB_CFLAGS
)
$(
LIB_LDFLAGS
)
-shared
-o
$@
$^
clean
:
rm
-f
*
.o
$(
LIB_PORTTRIGGER
)
Loading