about summary refs log tree commit diff
path: root/socket
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2024-01-01 10:12:26 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2024-01-01 10:53:40 -0800
commitdff8da6b3e89b986bb7f6b1ec18cf65d5972e307 (patch)
tree09151f6e3abfe04e677d62d685088a16c23e7dcf /socket
parentcf9481724bcb86ad4a86cca7befed74bb9cc15eb (diff)
downloadglibc-dff8da6b3e89b986bb7f6b1ec18cf65d5972e307.tar.gz
glibc-dff8da6b3e89b986bb7f6b1ec18cf65d5972e307.tar.xz
glibc-dff8da6b3e89b986bb7f6b1ec18cf65d5972e307.zip
Update copyright dates with scripts/update-copyrights
Diffstat (limited to 'socket')
-rw-r--r--socket/Makefile2
-rw-r--r--socket/accept.c2
-rw-r--r--socket/accept4.c2
-rw-r--r--socket/bind.c2
-rw-r--r--socket/bits/socket2.h2
-rw-r--r--socket/connect.c2
-rw-r--r--socket/getpeername.c2
-rw-r--r--socket/getsockname.c2
-rw-r--r--socket/getsockopt.c2
-rw-r--r--socket/isfdtype.c2
-rw-r--r--socket/listen.c2
-rw-r--r--socket/opensock.c2
-rw-r--r--socket/recv.c2
-rw-r--r--socket/recvfrom.c2
-rw-r--r--socket/recvmmsg.c2
-rw-r--r--socket/recvmsg.c2
-rw-r--r--socket/sa_len.c2
-rw-r--r--socket/send.c2
-rw-r--r--socket/sendmmsg.c2
-rw-r--r--socket/sendmsg.c2
-rw-r--r--socket/sendto.c2
-rw-r--r--socket/setsockopt.c2
-rw-r--r--socket/shutdown.c2
-rw-r--r--socket/sockaddr_un_set.c2
-rw-r--r--socket/sockatmark.c2
-rw-r--r--socket/socket.c2
-rw-r--r--socket/socketpair.c2
-rw-r--r--socket/sys/socket.h2
-rw-r--r--socket/sys/un.h2
-rw-r--r--socket/tst-accept4.c2
-rw-r--r--socket/tst-cmsg_cloexec.c2
-rw-r--r--socket/tst-cmsghdr-skeleton.c2
-rw-r--r--socket/tst-cmsghdr.c2
-rw-r--r--socket/tst-sockaddr_un_set.c2
-rw-r--r--socket/tst-sockopt.c2
35 files changed, 35 insertions, 35 deletions
diff --git a/socket/Makefile b/socket/Makefile
index 08f20118cd..74ca5b8452 100644
--- a/socket/Makefile
+++ b/socket/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1991-2023 Free Software Foundation, Inc.
+# Copyright (C) 1991-2024 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/accept.c b/socket/accept.c
index b0d1e31787..461918ea30 100644
--- a/socket/accept.c
+++ b/socket/accept.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/accept4.c b/socket/accept4.c
index fd5522b85e..215f4022fa 100644
--- a/socket/accept4.c
+++ b/socket/accept4.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2008-2023 Free Software Foundation, Inc.
+/* Copyright (C) 2008-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/bind.c b/socket/bind.c
index 6f1cb7517f..ba6dfc5bed 100644
--- a/socket/bind.c
+++ b/socket/bind.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/bits/socket2.h b/socket/bits/socket2.h
index ffcc671625..a88cb64370 100644
--- a/socket/bits/socket2.h
+++ b/socket/bits/socket2.h
@@ -1,5 +1,5 @@
 /* Checking macros for socket functions.
-   Copyright (C) 2005-2023 Free Software Foundation, Inc.
+   Copyright (C) 2005-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/connect.c b/socket/connect.c
index dbb0d75bb7..ec88b41f52 100644
--- a/socket/connect.c
+++ b/socket/connect.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/getpeername.c b/socket/getpeername.c
index 3af8158c89..d620321b70 100644
--- a/socket/getpeername.c
+++ b/socket/getpeername.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/getsockname.c b/socket/getsockname.c
index 3f423237c1..59d6e4d8af 100644
--- a/socket/getsockname.c
+++ b/socket/getsockname.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/getsockopt.c b/socket/getsockopt.c
index 2e4d6ff620..d9334aedf8 100644
--- a/socket/getsockopt.c
+++ b/socket/getsockopt.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/isfdtype.c b/socket/isfdtype.c
index a0e6343df6..340b805bcc 100644
--- a/socket/isfdtype.c
+++ b/socket/isfdtype.c
@@ -1,5 +1,5 @@
 /* isfdtype - Determine whether descriptor has given property.  Stub version.
-   Copyright (C) 1996-2023 Free Software Foundation, Inc.
+   Copyright (C) 1996-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/listen.c b/socket/listen.c
index a0fd96e5c6..85f4c68903 100644
--- a/socket/listen.c
+++ b/socket/listen.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/opensock.c b/socket/opensock.c
index d4db59b88b..83e8991fad 100644
--- a/socket/opensock.c
+++ b/socket/opensock.c
@@ -1,5 +1,5 @@
 /* Create socket with an unspecified address family for use with ioctl.
-   Copyright (C) 1999-2023 Free Software Foundation, Inc.
+   Copyright (C) 1999-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/recv.c b/socket/recv.c
index 95d9ef0eb6..0894388f48 100644
--- a/socket/recv.c
+++ b/socket/recv.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/recvfrom.c b/socket/recvfrom.c
index b8e45c39ff..8a48be335f 100644
--- a/socket/recvfrom.c
+++ b/socket/recvfrom.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/recvmmsg.c b/socket/recvmmsg.c
index db7e648bc4..47476ee6fa 100644
--- a/socket/recvmmsg.c
+++ b/socket/recvmmsg.c
@@ -1,5 +1,5 @@
 /* Receive multiple messages on a socket.  Stub version.
-   Copyright (C) 2010-2023 Free Software Foundation, Inc.
+   Copyright (C) 2010-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/recvmsg.c b/socket/recvmsg.c
index 6e9f70cb6e..b674435c3e 100644
--- a/socket/recvmsg.c
+++ b/socket/recvmsg.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sa_len.c b/socket/sa_len.c
index 837b4ac576..7039745df3 100644
--- a/socket/sa_len.c
+++ b/socket/sa_len.c
@@ -1,5 +1,5 @@
 /* Helper for SA_LEN macro.
-   Copyright (C) 2013-2023 Free Software Foundation, Inc.
+   Copyright (C) 2013-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/send.c b/socket/send.c
index 3524acc23f..70b75de27d 100644
--- a/socket/send.c
+++ b/socket/send.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sendmmsg.c b/socket/sendmmsg.c
index 423469abe4..e41bbdddf7 100644
--- a/socket/sendmmsg.c
+++ b/socket/sendmmsg.c
@@ -1,5 +1,5 @@
 /* Send multiple messages on a socket.  Stub version.
-   Copyright (C) 2011-2023 Free Software Foundation, Inc.
+   Copyright (C) 2011-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sendmsg.c b/socket/sendmsg.c
index 3b6c6d498a..7d1cf8fc51 100644
--- a/socket/sendmsg.c
+++ b/socket/sendmsg.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sendto.c b/socket/sendto.c
index 57f7c9824f..2a6894793f 100644
--- a/socket/sendto.c
+++ b/socket/sendto.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/setsockopt.c b/socket/setsockopt.c
index df2302e7ea..8ede566752 100644
--- a/socket/setsockopt.c
+++ b/socket/setsockopt.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/shutdown.c b/socket/shutdown.c
index 0ec074268f..f6bf65d1a0 100644
--- a/socket/shutdown.c
+++ b/socket/shutdown.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sockaddr_un_set.c b/socket/sockaddr_un_set.c
index 8ec5b6f146..0287ca6109 100644
--- a/socket/sockaddr_un_set.c
+++ b/socket/sockaddr_un_set.c
@@ -1,5 +1,5 @@
 /* Set the sun_path member of struct sockaddr_un.
-   Copyright (C) 2022-2023 Free Software Foundation, Inc.
+   Copyright (C) 2022-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sockatmark.c b/socket/sockatmark.c
index 5a2106807e..52e5dd3eef 100644
--- a/socket/sockatmark.c
+++ b/socket/sockatmark.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001-2023 Free Software Foundation, Inc.
+/* Copyright (C) 2001-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/socket.c b/socket/socket.c
index 957fcac96f..c8e7fde123 100644
--- a/socket/socket.c
+++ b/socket/socket.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/socketpair.c b/socket/socketpair.c
index 1ec504dd27..85318825a1 100644
--- a/socket/socketpair.c
+++ b/socket/socketpair.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sys/socket.h b/socket/sys/socket.h
index b67e71c43d..366eaab845 100644
--- a/socket/sys/socket.h
+++ b/socket/sys/socket.h
@@ -1,5 +1,5 @@
 /* Declarations of socket constants, types, and functions.
-   Copyright (C) 1991-2023 Free Software Foundation, Inc.
+   Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/sys/un.h b/socket/sys/un.h
index 61fc9d43f5..bf03b7d6ce 100644
--- a/socket/sys/un.h
+++ b/socket/sys/un.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/tst-accept4.c b/socket/tst-accept4.c
index fa76624340..84f00e290f 100644
--- a/socket/tst-accept4.c
+++ b/socket/tst-accept4.c
@@ -1,5 +1,5 @@
 /* Test the accept4 function with differing flags arguments.
-   Copyright (C) 2017-2023 Free Software Foundation, Inc.
+   Copyright (C) 2017-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/tst-cmsg_cloexec.c b/socket/tst-cmsg_cloexec.c
index a18f491232..0ac421b0b8 100644
--- a/socket/tst-cmsg_cloexec.c
+++ b/socket/tst-cmsg_cloexec.c
@@ -1,5 +1,5 @@
 /* Smoke test for MSG_CMSG_CLOEXEC.
-   Copyright (C) 2021-2023 Free Software Foundation, Inc.
+   Copyright (C) 2021-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/tst-cmsghdr-skeleton.c b/socket/tst-cmsghdr-skeleton.c
index 9516139f87..1d518270b0 100644
--- a/socket/tst-cmsghdr-skeleton.c
+++ b/socket/tst-cmsghdr-skeleton.c
@@ -1,5 +1,5 @@
 /* Test ancillary data header creation.
-   Copyright (C) 2022-2023 Free Software Foundation, Inc.
+   Copyright (C) 2022-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/tst-cmsghdr.c b/socket/tst-cmsghdr.c
index 3173c92e24..58f7f1b685 100644
--- a/socket/tst-cmsghdr.c
+++ b/socket/tst-cmsghdr.c
@@ -1,5 +1,5 @@
 /* Test ancillary data header creation.
-   Copyright (C) 2022-2023 Free Software Foundation, Inc.
+   Copyright (C) 2022-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/tst-sockaddr_un_set.c b/socket/tst-sockaddr_un_set.c
index 4f8137362d..de0ed35c8d 100644
--- a/socket/tst-sockaddr_un_set.c
+++ b/socket/tst-sockaddr_un_set.c
@@ -1,5 +1,5 @@
 /* Test the __sockaddr_un_set function.
-   Copyright (C) 2022-2023 Free Software Foundation, Inc.
+   Copyright (C) 2022-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/socket/tst-sockopt.c b/socket/tst-sockopt.c
index 58ffa92b33..b5d6df9288 100644
--- a/socket/tst-sockopt.c
+++ b/socket/tst-sockopt.c
@@ -1,5 +1,5 @@
 /* Smoke test for socket options.
-   Copyright (C) 2021-2023 Free Software Foundation, Inc.
+   Copyright (C) 2021-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or