Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
babeld
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
babeld
Commits
09ea0a38
Commit
09ea0a38
authored
Sep 09, 2011
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename network.{c,h} to interface.{c,h}.
parent
1c3b2bb8
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
13 additions
and
13 deletions
+13
-13
Makefile
Makefile
+2
-2
babeld.c
babeld.c
+1
-1
configuration.c
configuration.c
+1
-1
interface.c
interface.c
+1
-1
interface.h
interface.h
+0
-0
kernel_netlink.c
kernel_netlink.c
+1
-1
local.c
local.c
+1
-1
message.c
message.c
+1
-1
neighbour.c
neighbour.c
+1
-1
resend.c
resend.c
+1
-1
route.c
route.c
+1
-1
source.c
source.c
+1
-1
xroute.c
xroute.c
+1
-1
No files found.
Makefile
View file @
09ea0a38
...
...
@@ -8,10 +8,10 @@ CFLAGS = $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES)
LDLIBS
=
-lrt
SRCS
=
babeld.c net.c kernel.c util.c
network
.c source.c neighbour.c
\
SRCS
=
babeld.c net.c kernel.c util.c
interface
.c source.c neighbour.c
\
route.c xroute.c message.c resend.c configuration.c local.c
OBJS
=
babeld.o net.o kernel.o util.o
network
.o source.o neighbour.o
\
OBJS
=
babeld.o net.o kernel.o util.o
interface
.o source.o neighbour.o
\
route.o xroute.o message.o resend.o configuration.o local.o
babeld
:
$(OBJS)
...
...
babeld.c
View file @
09ea0a38
...
...
@@ -43,7 +43,7 @@ THE SOFTWARE.
#include "util.h"
#include "net.h"
#include "kernel.h"
#include "
network
.h"
#include "
interface
.h"
#include "source.h"
#include "neighbour.h"
#include "route.h"
...
...
configuration.c
View file @
09ea0a38
...
...
@@ -34,7 +34,7 @@ THE SOFTWARE.
#include "babeld.h"
#include "util.h"
#include "
network
.h"
#include "
interface
.h"
#include "configuration.h"
struct
filter
*
input_filters
=
NULL
;
...
...
network
.c
→
interface
.c
View file @
09ea0a38
...
...
@@ -35,7 +35,7 @@ THE SOFTWARE.
#include "babeld.h"
#include "util.h"
#include "kernel.h"
#include "
network
.h"
#include "
interface
.h"
#include "neighbour.h"
#include "message.h"
#include "route.h"
...
...
network
.h
→
interface
.h
View file @
09ea0a38
File moved
kernel_netlink.c
View file @
09ea0a38
...
...
@@ -49,7 +49,7 @@ THE SOFTWARE.
#include "babeld.h"
#include "kernel.h"
#include "util.h"
#include "
network
.h"
#include "
interface
.h"
int
export_table
=
-
1
,
import_table
=
-
1
;
...
...
local.c
View file @
09ea0a38
...
...
@@ -27,7 +27,7 @@ THE SOFTWARE.
#include <errno.h>
#include "babeld.h"
#include "
network
.h"
#include "
interface
.h"
#include "source.h"
#include "neighbour.h"
#include "xroute.h"
...
...
message.c
View file @
09ea0a38
...
...
@@ -31,7 +31,7 @@ THE SOFTWARE.
#include "babeld.h"
#include "util.h"
#include "net.h"
#include "
network
.h"
#include "
interface
.h"
#include "source.h"
#include "neighbour.h"
#include "route.h"
...
...
neighbour.c
View file @
09ea0a38
...
...
@@ -28,7 +28,7 @@ THE SOFTWARE.
#include "babeld.h"
#include "util.h"
#include "
network
.h"
#include "
interface
.h"
#include "neighbour.h"
#include "source.h"
#include "route.h"
...
...
resend.c
View file @
09ea0a38
...
...
@@ -30,7 +30,7 @@ THE SOFTWARE.
#include "neighbour.h"
#include "resend.h"
#include "message.h"
#include "
network
.h"
#include "
interface
.h"
#include "configuration.h"
struct
timeval
resend_time
=
{
0
,
0
};
...
...
route.c
View file @
09ea0a38
...
...
@@ -30,7 +30,7 @@ THE SOFTWARE.
#include "babeld.h"
#include "util.h"
#include "kernel.h"
#include "
network
.h"
#include "
interface
.h"
#include "source.h"
#include "neighbour.h"
#include "route.h"
...
...
source.c
View file @
09ea0a38
...
...
@@ -28,7 +28,7 @@ THE SOFTWARE.
#include "babeld.h"
#include "util.h"
#include "source.h"
#include "
network
.h"
#include "
interface
.h"
#include "route.h"
struct
source
*
srcs
=
NULL
;
...
...
xroute.c
View file @
09ea0a38
...
...
@@ -36,7 +36,7 @@ THE SOFTWARE.
#include "xroute.h"
#include "util.h"
#include "configuration.h"
#include "
network
.h"
#include "
interface
.h"
#include "local.h"
struct
xroute
*
xroutes
;
...
...
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