Skip to content
Open
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
3 changes: 2 additions & 1 deletion _sctp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1663,7 +1663,8 @@ static PyObject* getladdrs(PyObject* dummy, PyObject* args)

static PyObject* sctp_send_msg(PyObject* dummy, PyObject* args)
{
int fd, msg_len, size_sent, ppid, flags, stream, ttl, context;
Py_ssize_t msg_len;
int fd, size_sent, ppid, flags, stream, ttl, context;
const char *msg;
char *to;
int port;
Expand Down