Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing some naming and typo in transport-udt #13031

Merged
merged 1 commit into from Dec 4, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -214,7 +214,7 @@ public int getSystemReceiveBufferSize() {
}

@Override
public UdtChannelConfig setSystemSendBufferSize(
public UdtChannelConfig setSystemReceiveBufferSize(
final int systemReceiveBufferSize) {
this.systemReceiveBufferSize = systemReceiveBufferSize;
return this;
Expand All @@ -233,7 +233,7 @@ public UdtChannelConfig setProtocolSendBufferSize(
}

@Override
public UdtChannelConfig setSystemReceiveBufferSize(
public UdtChannelConfig setSystemSendBufferSize(
final int systemSendBufferSize) {
this.systemSendBufferSize = systemSendBufferSize;
return this;
Expand Down
Expand Up @@ -128,15 +128,15 @@ public UdtServerChannelConfig setSoLinger(final int soLinger) {

@Override
public UdtServerChannelConfig setSystemReceiveBufferSize(
final int systemSendBufferSize) {
super.setSystemReceiveBufferSize(systemSendBufferSize);
final int systemReceiveBufferSize) {
super.setSystemReceiveBufferSize(systemReceiveBufferSize);
return this;
}

@Override
public UdtServerChannelConfig setSystemSendBufferSize(
final int systemReceiveBufferSize) {
super.setSystemSendBufferSize(systemReceiveBufferSize);
final int systemSendBufferSize) {
super.setSystemSendBufferSize(systemSendBufferSize);
return this;
}

Expand Down