/usr/include/odil/pdu/UserIdentityAC.h is in libodil0-dev 0.4.1-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 | /*************************************************************************
* odil - Copyright (C) Universite de Strasbourg
* Distributed under the terms of the CeCILL-B license, as published by
* the CEA-CNRS-INRIA. Refer to the LICENSE file or to
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
* for details.
************************************************************************/
#ifndef _1c3d6b3c_09a0_4452_9263_aa010ee1d973
#define _1c3d6b3c_09a0_4452_9263_aa010ee1d973
#include <istream>
#include <string>
#include "odil/pdu/Object.h"
namespace odil
{
namespace pdu
{
/// @brief User Identity Sub-Item Structure (A-ASSOCIATE-AC) (PS 3.7, D.3.3.7.2).
class UserIdentityAC: public Object
{
public:
/// @brief Item type.
static uint8_t const type=0x59;
/// @brief Create an User Identity.
UserIdentityAC(std::string const & server_response="");
/// @brief Read an User Identity from a stream.
UserIdentityAC(std::istream & stream);
/// @brief Return the server response.
std::string const & get_server_response() const;
/// @brief Set the server response.
void set_server_response(std::string const & value);
};
}
}
#endif // _1c3d6b3c_09a0_4452_9263_aa010ee1d973
|