| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* Null security operations. |
|---|
| 2 | 3 | * |
|---|
| 3 | 4 | * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved. |
|---|
| 4 | 5 | * Written by David Howells (dhowells@redhat.com) |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or |
|---|
| 7 | | - * modify it under the terms of the GNU General Public Licence |
|---|
| 8 | | - * as published by the Free Software Foundation; either version |
|---|
| 9 | | - * 2 of the Licence, or (at your option) any later version. |
|---|
| 10 | 6 | */ |
|---|
| 11 | 7 | |
|---|
| 12 | 8 | #include <net/af_rxrpc.h> |
|---|
| .. | .. |
|---|
| 35 | 31 | rxrpc_seq_t seq, u16 expected_cksum) |
|---|
| 36 | 32 | { |
|---|
| 37 | 33 | return 0; |
|---|
| 34 | +} |
|---|
| 35 | + |
|---|
| 36 | +static void none_free_call_crypto(struct rxrpc_call *call) |
|---|
| 37 | +{ |
|---|
| 38 | 38 | } |
|---|
| 39 | 39 | |
|---|
| 40 | 40 | static void none_locate_data(struct rxrpc_call *call, struct sk_buff *skb, |
|---|
| .. | .. |
|---|
| 87 | 87 | .exit = none_exit, |
|---|
| 88 | 88 | .init_connection_security = none_init_connection_security, |
|---|
| 89 | 89 | .prime_packet_security = none_prime_packet_security, |
|---|
| 90 | + .free_call_crypto = none_free_call_crypto, |
|---|
| 90 | 91 | .secure_packet = none_secure_packet, |
|---|
| 91 | 92 | .verify_packet = none_verify_packet, |
|---|
| 92 | 93 | .locate_data = none_locate_data, |
|---|