aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/osmo_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmocom/core/osmo_io.h')
-rw-r--r--include/osmocom/core/osmo_io.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osmocom/core/osmo_io.h b/include/osmocom/core/osmo_io.h
index d7402d6f..a539c8b6 100644
--- a/include/osmocom/core/osmo_io.h
+++ b/include/osmocom/core/osmo_io.h
@@ -52,14 +52,14 @@ struct osmo_io_ops {
/* mode OSMO_IO_FD_MODE_RECVFROM_SENDTO: */
struct {
- /*! call-back function emulating sendto */
- void (*sendto_cb)(struct osmo_io_fd *iofd, int res,
- const struct msgb *msg,
- const struct osmo_sockaddr *daddr);
/*! call-back function emulating recvfrom */
void (*recvfrom_cb)(struct osmo_io_fd *iofd, int res,
struct msgb *msg,
const struct osmo_sockaddr *saddr);
+ /*! call-back function emulating sendto */
+ void (*sendto_cb)(struct osmo_io_fd *iofd, int res,
+ const struct msgb *msg,
+ const struct osmo_sockaddr *daddr);
};
};
};