IP_MTU(2const) IP_MTU(2const)

IP_MTU - path maximum transmission unit size

Standard C library (libc-lc)

#include <netinet/in.h>  /* Definition of IP* constants */
#include <sys/socket.h>
int getsockopt(int sockfd, IPPROTO_IP, IP_MTU,
               int *val, sizeof(int));

Retrieve the current known path MTU of the current socket.

IP_MTU is valid only for getsockopt(2), and can be employed only when the socket has been connected.

See IPPROTO_IP(2const). See getsockopt(2). See ip(7).

Linux.

Linux 2.2.

IPPROTO_IP(2const), getsockopt(2), ip(7)

2025-11-25 Linux man-pages 6.17