refactor(bspwm): Cleanup

This commit is contained in:
Michael Carlberg
2016-12-14 07:45:29 +01:00
parent 18597f8e1d
commit b156d1bbf4
4 changed files with 30 additions and 31 deletions

View File

@ -84,6 +84,14 @@ namespace socket_util {
return string{buffer};
}
/**
* @see receive
*/
string unix_connection::receive(const ssize_t receive_bytes, int flags) {
ssize_t bytes{0};
return receive(receive_bytes, &bytes, flags);
}
/**
* Peek at the specified number of bytes
*/