diff --git a/.gitignore b/.gitignore index e0124cf..a978799 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ build/ .idea venv .venv +.claude **.FCBak \ No newline at end of file diff --git a/src/iiwa_controller/external/libFRI/src/connection/friUdpConnection.cpp b/src/iiwa_controller/external/libFRI/src/connection/friUdpConnection.cpp index 4c79f06..ccc170b 100644 --- a/src/iiwa_controller/external/libFRI/src/connection/friUdpConnection.cpp +++ b/src/iiwa_controller/external/libFRI/src/connection/friUdpConnection.cpp @@ -5,10 +5,10 @@ agreement or other license is obtained by KUKA Deutschland GmbH, Augsburg, Germa SCOPE -The software �KUKA Sunrise.Connectivity FRI Client SDK� is targeted to work in -conjunction with the �KUKA Sunrise.Connectivity FastRobotInterface� toolkit. -In the following, the term �software� refers to all material directly -belonging to the provided SDK �Software development kit�, particularly source +The software “KUKA Sunrise.Connectivity FRI Client SDK” is targeted to work in +conjunction with the “KUKA Sunrise.Connectivity FastRobotInterface” toolkit. +In the following, the term “software” refers to all material directly +belonging to the provided SDK “Software development kit”, particularly source code, libraries, binaries, manuals and technical documentation. COPYRIGHT @@ -181,7 +181,7 @@ int UdpConnection::receive(char *buffer, int maxSize) #else int sockAddrSize; #endif - sockAddrSize = static_cast(sizeof(struct sockaddr_in)); + sockAddrSize = sizeof(struct sockaddr_in); /** check for timeout Because SO_RCVTIMEO is in Windows not correctly implemented, select is used for the receive time out. If a timeout greater than 0 is given, wait until the timeout is reached or a message was received.