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
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
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
Merged
port-triger: added handling for bbf plugin
bbf_plugin_impl
into
devel
Overview
11
Commits
3
Pipelines
4
Changes
4
Merged
Amit Kumar
requested to merge
bbf_plugin_impl
into
devel
1 year ago
Overview
11
Commits
3
Pipelines
4
Changes
4
Expand
added subobject porttrigger in the NAT object of tr181 datamodel.
0
0
Merge request reports
Compare
devel
version 10
4a9b71b4
1 year ago
version 9
b0b2dbe1
1 year ago
version 8
f5f3f6fc
1 year ago
version 7
03a4cc11
1 year ago
version 6
591305de
1 year ago
version 5
bd5eedc2
1 year ago
version 4
6ab2ce67
1 year ago
version 3
f77eb167
1 year ago
version 2
84660560
1 year ago
version 1
5fb91641
1 year ago
devel (base)
and
latest version
latest version
28b2f1f1
3 commits,
1 year ago
version 10
4a9b71b4
2 commits,
1 year ago
version 9
b0b2dbe1
3 commits,
1 year ago
version 8
f5f3f6fc
2 commits,
1 year ago
version 7
03a4cc11
1 commit,
1 year ago
version 6
591305de
1 commit,
1 year ago
version 5
bd5eedc2
2 commits,
1 year ago
version 4
6ab2ce67
1 commit,
1 year ago
version 3
f77eb167
1 commit,
1 year ago
version 2
84660560
1 commit,
1 year ago
version 1
5fb91641
1 commit,
1 year ago
4 files
+
591
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
bbf_plugin/Makefile
0 → 100644
+
21
−
0
Options
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