| OLD | NEW |
| 1 /* dso_null.c */ | 1 /* dso_null.c */ |
| 2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL | 2 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL |
| 3 * project 2000. | 3 * project 2000. |
| 4 */ | 4 */ |
| 5 /* ==================================================================== | 5 /* ==================================================================== |
| 6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved. | 6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 NULL, /* bind_func */ | 71 NULL, /* bind_func */ |
| 72 /* For now, "unbind" doesn't exist */ | 72 /* For now, "unbind" doesn't exist */ |
| 73 #if 0 | 73 #if 0 |
| 74 NULL, /* unbind_var */ | 74 NULL, /* unbind_var */ |
| 75 NULL, /* unbind_func */ | 75 NULL, /* unbind_func */ |
| 76 #endif | 76 #endif |
| 77 NULL, /* ctrl */ | 77 NULL, /* ctrl */ |
| 78 NULL, /* dso_name_converter */ | 78 NULL, /* dso_name_converter */ |
| 79 NULL, /* dso_merger */ | 79 NULL, /* dso_merger */ |
| 80 NULL, /* init */ | 80 NULL, /* init */ |
| 81 » NULL /* finish */ | 81 » NULL, /* finish */ |
| 82 » NULL, /* pathbyaddr */ |
| 83 » NULL /* globallookup */ |
| 82 }; | 84 }; |
| 83 | 85 |
| 84 DSO_METHOD *DSO_METHOD_null(void) | 86 DSO_METHOD *DSO_METHOD_null(void) |
| 85 { | 87 { |
| 86 return(&dso_meth_null); | 88 return(&dso_meth_null); |
| 87 } | 89 } |
| 88 | 90 |
| OLD | NEW |