Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
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
Esteban Blanc
proview
Commits
1e8610d9
Commit
1e8610d9
authored
Sep 05, 2006
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msg_size and msg_id change from signed to unsigned
parent
cf48a37c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
remote/exe/rs_remote_udpip/src/rs_remote_udpip.c
remote/exe/rs_remote_udpip/src/rs_remote_udpip.c
+4
-4
No files found.
remote/exe/rs_remote_udpip/src/rs_remote_udpip.c
View file @
1e8610d9
/*
/*
* Proview $Id: rs_remote_udpip.c,v 1.
3 2006-04-24 13:22:2
4 claes Exp $
* Proview $Id: rs_remote_udpip.c,v 1.
4 2006-09-05 11:16:5
4 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
* Copyright (C) 2005 SSAB Oxelsund AB.
*
*
* This program is free software; you can redistribute it and/or
* This program is free software; you can redistribute it and/or
...
@@ -75,8 +75,8 @@ fd_set fds; /* For select call */
...
@@ -75,8 +75,8 @@ fd_set fds; /* For select call */
typedef
struct
typedef
struct
{
{
unsigned
char
protocol_id
[
2
];
unsigned
char
protocol_id
[
2
];
short
int
msg_size
;
unsigned
short
int
msg_size
;
short
int
msg_id
[
2
];
unsigned
short
int
msg_id
[
2
];
}
remote_udp_header
;
}
remote_udp_header
;
remnode_item
rn
;
remnode_item
rn
;
...
@@ -117,7 +117,7 @@ void RemoteSleep(float time)
...
@@ -117,7 +117,7 @@ void RemoteSleep(float time)
**************************************************************************
**************************************************************************
**************************************************************************/
**************************************************************************/
void
SendAck
(
short
int
id0
,
short
int
id1
)
void
SendAck
(
unsigned
short
int
id0
,
unsigned
short
int
id1
)
{
{
int
status
;
int
status
;
...
...
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