/usr/include/giomm-2.4/giomm/unixsocketaddress.h is in libglibmm-2.4-dev 2.46.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | // -*- c++ -*-
// Generated by gmmproc 2.46.3 -- DO NOT MODIFY!
#ifndef _GIOMM_UNIXSOCKETADDRESS_H
#define _GIOMM_UNIXSOCKETADDRESS_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/* Copyright (C) 2010 The giomm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <giomm/socketaddress.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GUnixSocketAddress GUnixSocketAddress;
typedef struct _GUnixSocketAddressClass GUnixSocketAddressClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Gio
{ class UnixSocketAddress_Class; } // namespace Gio
#endif //DOXYGEN_SHOULD_SKIP_THIS
namespace Gio
{
/** @addtogroup giommEnums giomm Enums and Flags */
/**
* @var UnixSocketAddressType UNIX_SOCKET_ADDRESS_INVALID
* Invalid.
*
* @var UnixSocketAddressType UNIX_SOCKET_ADDRESS_ANONYMOUS
* Anonymous.
*
* @var UnixSocketAddressType UNIX_SOCKET_ADDRESS_PATH
* A filesystem path.
*
* @var UnixSocketAddressType UNIX_SOCKET_ADDRESS_ABSTRACT
* An abstract name.
*
* @var UnixSocketAddressType UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED
* An abstract name, 0-padded
* to the full length of a unix socket name.
*
* @enum UnixSocketAddressType
*
* The type of name used by a UnixSocketAddress.
* UNIX_SOCKET_ADDRESS_PATH indicates a traditional unix domain
* socket bound to a filesystem path. UNIX_SOCKET_ADDRESS_ANONYMOUS
* indicates a socket not bound to any name (eg, a client-side socket,
* or a socket created with socketpair()).
*
* For abstract sockets, there are two incompatible ways of naming
* them; the man pages suggest using the entire `struct sockaddr_un`
* as the name, padding the unused parts of the %sun_path field with
* zeroes; this corresponds to UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED.
* However, many programs instead just use a portion of %sun_path, and
* pass an appropriate smaller length to bind() or connect(). This is
* UNIX_SOCKET_ADDRESS_ABSTRACT.
*
* @newin{2,26}
*
* @ingroup giommEnums
*/
enum UnixSocketAddressType
{
UNIX_SOCKET_ADDRESS_INVALID,
UNIX_SOCKET_ADDRESS_ANONYMOUS,
UNIX_SOCKET_ADDRESS_PATH,
UNIX_SOCKET_ADDRESS_ABSTRACT,
UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED
};
} // namespace Gio
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gio::UnixSocketAddressType> : public Glib::Value_Enum<Gio::UnixSocketAddressType>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gio
{
class ByteArray;
/** UnixSocketAddress - UNIX SocketAddress.
* Support for UNIX-domain (also known as local) sockets.
*
* UNIX domain sockets are generally visible in the filesystem. However, some
* systems support abstract socket names which are not visible in the
* filesystem and not affected by the filesystem permissions, visibility, etc.
* Currently this is only supported under Linux. If you attempt to use
* abstract sockets on other systems, function calls may return
* Gio::IO_ERROR_NOT_SUPPORTED errors. You can use
* Gio::UnixSocketAddress::abstract_names_supported() to see if abstract names
* are supported.
*
* Note that @c <giomm/unixsocketaddress.h> belongs to the UNIX-specific GIO
* interfaces.
* @newin{2,28}
* @ingroup NetworkIO
*/
class UnixSocketAddress
: public SocketAddress
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
public:
typedef UnixSocketAddress CppObjectType;
typedef UnixSocketAddress_Class CppClassType;
typedef GUnixSocketAddress BaseObjectType;
typedef GUnixSocketAddressClass BaseClassType;
// noncopyable
UnixSocketAddress(const UnixSocketAddress&) = delete;
UnixSocketAddress& operator=(const UnixSocketAddress&) = delete;
private: friend class UnixSocketAddress_Class;
static CppClassType unixsocketaddress_class_;
protected:
explicit UnixSocketAddress(const Glib::ConstructParams& construct_params);
explicit UnixSocketAddress(GUnixSocketAddress* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
UnixSocketAddress(UnixSocketAddress&& src) noexcept;
UnixSocketAddress& operator=(UnixSocketAddress&& src) noexcept;
virtual ~UnixSocketAddress() noexcept;
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GObject.
GUnixSocketAddress* gobj() { return reinterpret_cast<GUnixSocketAddress*>(gobject_); }
///Provides access to the underlying C GObject.
const GUnixSocketAddress* gobj() const { return reinterpret_cast<GUnixSocketAddress*>(gobject_); }
///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
GUnixSocketAddress* gobj_copy();
private:
//This is not available on Win32.
//This source file will not be compiled on Win32,
//and no class defined in it will be registered by wrap_init().
protected:
explicit UnixSocketAddress(const std::string& path);
//TODO: Possibly add when g_unix_socket_address_new_with_type() does not do
//more than call g_object_new() (maybe file a bug).
//_WRAP_CTOR(UnixSocketAddress(const std::string& path, int path_len = -1, UnixSocketAddressType type = Gio::UNIX_SOCKET_ADDRESS_PATH), g_unix_socket_address_new_with_type)
public:
/** Creates a new UnixSocketAddress for @a path.
*
* To create abstract socket addresses, on systems that support that,
* use g_unix_socket_address_new_abstract().
*
* @newin{2,22}
*
* @param path The socket path.
* @return A new UnixSocketAddress.
*/
static Glib::RefPtr<UnixSocketAddress> create(const std::string& path);
//TODO: Add when the above constructor is included, removing the handwritten
//create() method for it below.
//_WRAP_METHOD_DOCS_ONLY(g_unix_socket_address_new_with_type)
//_WRAP_CREATE(const std::string& path, int path_len = -1, UnixSocketAddressType type = Gio::UNIX_SOCKET_ADDRESS_PATH)
/** Creates a new UnixSocketAddress of type @a type with name @a path.
*
* If @a type is UNIX_SOCKET_ADDRESS_PATH, this is equivalent to
* calling g_unix_socket_address_new().
*
* If @a path_type is UNIX_SOCKET_ADDRESS_ABSTRACT, then @a path_len
* bytes of @a path will be copied to the socket's path, and only those
* bytes will be considered part of the name. (If @a path_len is -1,
* then @a path is assumed to be NUL-terminated.) For example, if @a path
* was "test", then calling g_socket_address_get_native_size() on the
* returned socket would return 7 (2 bytes of overhead, 1 byte for the
* abstract-socket indicator byte, and 4 bytes for the name "test").
*
* If @a path_type is UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED, then
* @a path_len bytes of @a path will be copied to the socket's path, the
* rest of the path will be padded with 0 bytes, and the entire
* zero-padded buffer will be considered the name. (As above, if
* @a path_len is -1, then @a path is assumed to be NUL-terminated.) In
* this case, g_socket_address_get_native_size() will always return
* the full size of a `struct sockaddr_un`, although
* g_unix_socket_address_get_path_len() will still return just the
* length of @a path.
*
* UNIX_SOCKET_ADDRESS_ABSTRACT is preferred over
* UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED for new programs. Of course,
* when connecting to a server created by another process, you must
* use the appropriate type corresponding to how that process created
* its listening socket.
*
* @newin{2,26}
*
* @param path The name.
* @param path_len The length of @a path, or -1.
* @param type A UnixSocketAddressType.
* @return A new UnixSocketAddress.
*/
static Glib::RefPtr<UnixSocketAddress> create(const std::string& path,
UnixSocketAddressType type = Gio::UNIX_SOCKET_ADDRESS_ABSTRACT,
int path_len = -1);
// Deprecated.
/** Gets @a address's type.
*
* @newin{2,26}
*
* @return A UnixSocketAddressType.
*/
UnixSocketAddressType get_address_type() const;
/** Gets @a address's path, or for abstract sockets the "name".
*
* Guaranteed to be zero-terminated, but an abstract socket
* may contain embedded zeros, and thus you should use
* g_unix_socket_address_get_path_len() to get the true length
* of this string.
*
* @newin{2,22}
*
* @return The path for @a address.
*/
std::string get_path() const;
/** Checks if abstract UNIX domain socket names are supported.
*
* @newin{2,22}
*
* @return <tt>true</tt> if supported, <tt>false</tt> otherwise.
*/
static bool abstract_names_supported();
#ifndef GIOMM_DISABLE_DEPRECATED
/** Whether or not this is an abstract address
*
* Deprecated: Use UnixSocketAddress::property_address_type(), which
* distinguishes between zero-padded and non-zero-padded
* abstract addresses.
*
* @deprecated Use property_address_type() instead, which distinguishes between zero-padded and non-zero-padded abstract addresses.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_abstract() const;
#endif // GIOMM_DISABLE_DEPRECATED
/** The type of UNIX socket address.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< UnixSocketAddressType > property_address_type() const;
/** UNIX socket path.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< std::string > property_path() const;
/** UNIX socket path, as byte array.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<ByteArray> > property_path_as_array() const;
public:
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
};
} // namespace Gio
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gio::UnixSocketAddress
*/
Glib::RefPtr<Gio::UnixSocketAddress> wrap(GUnixSocketAddress* object, bool take_copy = false);
}
#endif /* _GIOMM_UNIXSOCKETADDRESS_H */
|