Loading sjrpc/core/rpcconnection.py +2 −2 Original line number Diff line number Diff line Loading @@ -25,8 +25,8 @@ class RpcConnection(object): This class manage a single peer connection. ''' RECV_BUF_SIZE = 1024 SEND_BUF_SIZE = 1024 RECV_BUF_SIZE = 4096 SEND_BUF_SIZE = 4096 REQUEST_MESSAGE = {'id': None, 'method': None, 'args': [], 'kwargs': {}} RESPONSE_MESSAGE = {'id': None, 'return': None, 'error': None} Loading Loading
sjrpc/core/rpcconnection.py +2 −2 Original line number Diff line number Diff line Loading @@ -25,8 +25,8 @@ class RpcConnection(object): This class manage a single peer connection. ''' RECV_BUF_SIZE = 1024 SEND_BUF_SIZE = 1024 RECV_BUF_SIZE = 4096 SEND_BUF_SIZE = 4096 REQUEST_MESSAGE = {'id': None, 'method': None, 'args': [], 'kwargs': {}} RESPONSE_MESSAGE = {'id': None, 'return': None, 'error': None} Loading