Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
iproute2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
iproute2
Commits
5bd9dd49
Commit
5bd9dd49
authored
Dec 23, 2012
by
Strake
Committed by
Stephen Hemminger
Dec 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include needed files
Needed to build iproute2 with musl
parent
e29d8cc6
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
1 deletion
+10
-1
include/libnetlink.h
include/libnetlink.h
+1
-0
include/utils.h
include/utils.h
+1
-0
ip/ipaddress.c
ip/ipaddress.c
+1
-1
ip/ipntable.c
ip/ipntable.c
+1
-0
ip/ipprefix.c
ip/ipprefix.c
+1
-0
lib/ipx_ntop.c
lib/ipx_ntop.c
+1
-0
lib/ipx_pton.c
lib/ipx_pton.c
+1
-0
lib/utils.c
lib/utils.c
+2
-0
tc/m_ematch.h
tc/m_ematch.h
+1
-0
No files found.
include/libnetlink.h
View file @
5bd9dd49
#ifndef __LIBNETLINK_H__
#define __LIBNETLINK_H__ 1
#include <stdio.h>
#include <string.h>
#include <asm/types.h>
#include <linux/netlink.h>
...
...
include/utils.h
View file @
5bd9dd49
#ifndef __UTILS_H__
#define __UTILS_H__ 1
#include <sys/types.h>
#include <asm/types.h>
#include <resolv.h>
#include <stdlib.h>
...
...
ip/ipaddress.c
View file @
5bd9dd49
...
...
@@ -19,7 +19,7 @@
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <
sys/
errno.h>
#include <errno.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
...
...
ip/ipntable.c
View file @
5bd9dd49
...
...
@@ -27,6 +27,7 @@
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <time.h>
#include "utils.h"
...
...
ip/ipprefix.c
View file @
5bd9dd49
...
...
@@ -26,6 +26,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/icmp6.h>
#include "utils.h"
...
...
lib/ipx_ntop.c
View file @
5bd9dd49
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "utils.h"
...
...
lib/ipx_pton.c
View file @
5bd9dd49
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "utils.h"
...
...
lib/utils.c
View file @
5bd9dd49
...
...
@@ -15,6 +15,7 @@
#include <unistd.h>
#include <syslog.h>
#include <fcntl.h>
#include <limits.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <string.h>
...
...
@@ -22,6 +23,7 @@
#include <arpa/inet.h>
#include <asm/types.h>
#include <linux/pkt_sched.h>
#include <linux/param.h>
#include <time.h>
#include <sys/time.h>
#include <errno.h>
...
...
tc/m_ematch.h
View file @
5bd9dd49
...
...
@@ -4,6 +4,7 @@
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include "utils.h"
#include "tc_util.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment