Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void send(byte[] data) {
} catch (IOException e) {
logger.debug("Socket exception while writing data.", e);

// looks like the only the only way to detect a closed connection is to try and write to it
// looks like the only way to detect a closed connection is to try and write to it
// afaik read also throws an exception if the connection is open but there is nothing to read
if (netLoop != null) {
netLoop.stop(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ public void setPersonaState(EPersonaState state) {
}

/**
* JavaSteam addition:
* Sets the local user's persona state flag back to normal desktop mode.
*/
public void resetPersonaStateFlag() {
Expand All @@ -208,6 +209,7 @@ public void resetPersonaStateFlag() {
}

/**
* JavaSteam addition:
* Sets the local user's persona state flag to a valid ClientType
*
* @param flag one of the following
Expand Down