Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Leo Le Bouter
slapos
Commits
5fe4e2ab
Commit
5fe4e2ab
authored
Feb 10, 2013
by
Jondy Zhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add kernel_cygwin.c
parent
0e633e88
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
690 additions
and
78 deletions
+690
-78
component/babeld/cyginet.c
component/babeld/cyginet.c
+3
-78
component/babeld/kernel_cygwin.c
component/babeld/kernel_cygwin.c
+687
-0
No files found.
component/babeld/cyginet.c
View file @
5fe4e2ab
...
@@ -532,6 +532,7 @@ int cyginet_stop_monitor_route_changes()
...
@@ -532,6 +532,7 @@ int cyginet_stop_monitor_route_changes()
/* Notify thread to quit */
/* Notify thread to quit */
WSASetEvent
(
event_notify_monitor_thread
);
WSASetEvent
(
event_notify_monitor_thread
);
CLOSESOCKEVENT
(
event_notify_monitor_thread
);
CLOSESOCKEVENT
(
event_notify_monitor_thread
);
/* Waiting for thread exit in 5 seconds */
event_notify_monitor_thread
=
WSA_INVALID_EVENT
;
event_notify_monitor_thread
=
WSA_INVALID_EVENT
;
return
rc
;
return
rc
;
...
@@ -619,8 +620,7 @@ libwinet_edit_route_entry(const struct sockaddr *dest,
...
@@ -619,8 +620,7 @@ libwinet_edit_route_entry(const struct sockaddr *dest,
}
}
/* Add ipv4 route before Windows Vista */
/* Add ipv4 route before Windows Vista */
else
if
(
1
)
{
else
if
(
0
)
{
MIB_IPFORWARDROW
Row
;
MIB_IPFORWARDROW
Row
;
unsigned
long
Res
;
unsigned
long
Res
;
memset
(
&
Row
,
0
,
sizeof
(
MIB_IPFORWARDROW
));
memset
(
&
Row
,
0
,
sizeof
(
MIB_IPFORWARDROW
));
...
@@ -1931,74 +1931,6 @@ DWORD GetConnectedNetworks()
...
@@ -1931,74 +1931,6 @@ DWORD GetConnectedNetworks()
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
#ifdef TEST_CYGINET
#ifdef TEST_CYGINET
static
int
libwinet_set_forward_entry
(
char
*
pszDest
,
char
*
pszNetMask
,
char
*
pszGateway
,
DWORD
dwIfIndex
,
DWORD
dwMetric
)
{
DWORD
dwStatus
;
MIB_IPFORWARDROW
routeEntry
;
// Ip routing table row entry
memset
(
&
routeEntry
,
0
,
sizeof
(
MIB_IPFORWARDROW
));
// converting and checking input arguments...
if
(
pszDest
==
NULL
||
pszNetMask
==
NULL
||
pszGateway
==
NULL
)
{
printf
(
"IpRoute: Bad Argument
\n
"
);
return
-
1
;
}
routeEntry
.
dwForwardDest
=
inet_addr
(
pszDest
);
// convert dotted ip addr. to ip addr.
if
(
routeEntry
.
dwForwardDest
==
INADDR_NONE
)
{
printf
(
"IpRoute: Bad Destination %s
\n
"
,
pszDest
);
return
-
1
;
}
routeEntry
.
dwForwardMask
=
inet_addr
(
pszNetMask
);
if
(
(
routeEntry
.
dwForwardMask
==
INADDR_NONE
)
&&
(
strcmp
(
"255.255.255.255"
,
pszNetMask
)
!=
0
)
)
{
printf
(
"IpRoute: Bad Mask %s
\n
"
,
pszNetMask
);
return
-
1
;
}
routeEntry
.
dwForwardNextHop
=
inet_addr
(
pszGateway
);
if
(
routeEntry
.
dwForwardNextHop
==
INADDR_NONE
)
{
printf
(
"IpRoute: Bad Gateway %s
\n
"
,
pszGateway
);
return
-
1
;
}
if
(
(
routeEntry
.
dwForwardDest
&
routeEntry
.
dwForwardMask
)
!=
routeEntry
.
dwForwardDest
)
{
printf
(
"IpRoute: Invalid Mask %s
\n
"
,
pszNetMask
);
return
-
1
;
}
routeEntry
.
dwForwardIfIndex
=
dwIfIndex
;
routeEntry
.
dwForwardMetric1
=
dwMetric
;
// some default values
routeEntry
.
dwForwardProto
=
MIB_IPPROTO_NETMGMT
;
routeEntry
.
dwForwardMetric2
=
(
DWORD
)
-
1
;
routeEntry
.
dwForwardMetric3
=
(
DWORD
)
-
1
;
routeEntry
.
dwForwardMetric4
=
(
DWORD
)
-
1
;
dwStatus
=
SetIpForwardEntry
(
&
routeEntry
);
if
(
dwStatus
!=
NO_ERROR
)
{
printf
(
"IpRoute: couldn't add (%s), dwStatus = %lu.
\n
"
,
pszDest
,
dwStatus
);
return
-
1
;
}
return
0
;
}
static
void
static
void
runTestCases
()
runTestCases
()
{
{
...
@@ -2278,14 +2210,7 @@ runTestCases()
...
@@ -2278,14 +2210,7 @@ runTestCases()
unsigned
int
metric
;
unsigned
int
metric
;
int
ifindex
;
int
ifindex
;
int
n
;
int
n
;
printf
(
"libwinet_set_forward_entry return %d
\n
"
,
libwinet_set_forward_entry
(
"192.168.128.250"
,
"255.255.255.255"
,
"192.168.128.200"
,
2
,
20
)
);
if
(
inet_pton
(
AF_INET
,
"192.168.128.119"
,
&
dest4
.
sin_addr
)
!=
1
)
if
(
inet_pton
(
AF_INET
,
"192.168.128.119"
,
&
dest4
.
sin_addr
)
!=
1
)
break
;
break
;
if
(
inet_pton
(
AF_INET
,
"192.168.128.200"
,
&
gate4
.
sin_addr
)
!=
1
)
if
(
inet_pton
(
AF_INET
,
"192.168.128.200"
,
&
gate4
.
sin_addr
)
!=
1
)
...
...
component/babeld/kernel_cygwin.c
0 → 100644
View file @
5fe4e2ab
This diff is collapsed.
Click to expand it.
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