Skip to content

Commit

Permalink
Client rollback for incorrect method name
Browse files Browse the repository at this point in the history
  • Loading branch information
sentivate committed Apr 2, 2021
1 parent 0a075ce commit 7e98d6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class UDSP {
connections[connectionKey] = client;
return client;
}
server = require('dgram').createclient('udp4');
server = require('dgram').createSocket('udp4');
requests = new Map();
close() {
const client = this;
Expand Down Expand Up @@ -109,7 +109,7 @@ class UDSP {
const udspPrototype = UDSP.prototype;
assign(udspPrototype, {
type: 'client',
description: 'client module for Universal Web clients',
description: 'client module for UDSP',
encode,
decode,
utility
Expand Down

0 comments on commit 7e98d6a

Please sign in to comment.