s2n_rfc5952.h 818 B

1234567891011121314151617181920212223
  1. #pragma once
  2. /*
  3. * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License").
  6. * You may not use this file except in compliance with the License.
  7. * A copy of the License is located at
  8. *
  9. * http://aws.amazon.com/apache2.0
  10. *
  11. * or in the "license" file accompanying this file. This file is distributed
  12. * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  13. * express or implied. See the License for the specific language governing
  14. */
  15. #include "utils/s2n_blob.h"
  16. #include "utils/s2n_result.h"
  17. /**
  18. * Converts a binary representation of an ip address into its canonical string
  19. * representation. Returns 0 on success and -1 on failure.
  20. */
  21. S2N_RESULT s2n_inet_ntop(int af, const void *addr, struct s2n_blob *dst);