History log of /openbmc/slpd-lite/sock_channel.cpp (Results 1 – 7 of 7)
Revision Date Author Comments
# 40efe672 24-Jul-2024 Andrew Geissler <geissonator@yahoo.com>

fix new gcc compile warnings about unused variables

The latest yocto has brought in a new gcc which is causing building of
this repo due to fails like this:

```
slpd-lite/sock_channel.cpp:27:23: er

fix new gcc compile warnings about unused variables

The latest yocto has brought in a new gcc which is causing building of
this repo due to fails like this:

```
slpd-lite/sock_channel.cpp:27:23: error: value computed is not used [-Werror=unused-value]
| 27 | buffer outBuffer(0);
| |
```

Fix this by just using the default vector constructor with no arguments
(resulting in a empty container to start with).

Change-Id: If06dfccd2aa234956e124c11bd268198be569e6d
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


# 537ff140 01-Nov-2018 Patrick Venture <venture@google.com>

add clang-format to repo for style

Add .clang-format to repo for style.

Change-Id: I286b3b245550d6a736d7df797f0ce21b51d7a235
Signed-off-by: Patrick Venture <venture@google.com>


# 908dee3d 21-Mar-2017 Ratan Gupta <ratagupt@in.ibm.com>

Remove unnecessary logs

Change-Id: Ib537f58bc7d5ec5efdada2243952bb868d99ffa1
Signed-off-by: Ratan Gupta <ratagupt@in.ibm.com>


# 1ee36397 10-Feb-2017 Ratan Gupta <ratagupt@in.ibm.com>

Remove prefix strings on debug statements.

Change-Id: Ieae336be4edba0ff84f4f752620aad3c60436a78
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Signed-off-by: Ratan Gupta <ratagupt@in.ibm.com>


# 5e008877 10-Feb-2017 Ratan Gupta <ratagupt@in.ibm.com>

Fix compilation errors for x86-64 SDK

Various socket parameters were size_t instead of socklen_t,
which are equivalent on 32-bit machines but not 64-bit.

Change-Id: Ibf08ff9a7128cfcb4b5e114d43cd6a2

Fix compilation errors for x86-64 SDK

Various socket parameters were size_t instead of socklen_t,
which are equivalent on 32-bit machines but not 64-bit.

Change-Id: Ibf08ff9a7128cfcb4b5e114d43cd6a24ba68cf97
Signed-off-by: Ratan Gupta <ratagupt@in.ibm.com>
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>

show more ...


# 70b85271 05-Jan-2017 Ratan Gupta <ratagupt@in.ibm.com>

Ipv6 support.

Changes to support Ipv6.

Change-Id: I0f1e991e79e7b1fe7f6f4890cef85049cb23b4c3
Signed-off-by: Ratan Gupta <ratagupt@in.ibm.com>


# 37a7a078 13-Dec-2016 Ratan Gupta <ratagupt@in.ibm.com>

Socket Class to encapsulate the socket operations.

The operations provided are reading the UDP packet, writing the packet.

Change-Id: I087dcbdf715213edf787c3053be76813ce8d9802
Signed-off-by: Ratan

Socket Class to encapsulate the socket operations.

The operations provided are reading the UDP packet, writing the packet.

Change-Id: I087dcbdf715213edf787c3053be76813ce8d9802
Signed-off-by: Ratan Gupta <ratagupt@in.ibm.com>

show more ...