summaryrefslogtreecommitdiff
path: root/src/core/hle/service/ssl
diff options
context:
space:
mode:
authorGravatar Morph2021-05-21 01:05:04 -0400
committerGravatar Morph2021-06-02 00:39:27 -0400
commit12c1766997f2596b4b1b1a6a411e4f6d56605ee7 (patch)
treee718a0f18be8aaf664ebdcd197af513e5a118b72 /src/core/hle/service/ssl
parentMerge pull request #6395 from lioncash/result-move (diff)
downloadyuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.tar.gz
yuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.tar.xz
yuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.zip
general: Replace RESULT_SUCCESS with ResultSuccess
Transition to PascalCase for result names.
Diffstat (limited to 'src/core/hle/service/ssl')
-rw-r--r--src/core/hle/service/ssl/ssl.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/ssl/ssl.cpp b/src/core/hle/service/ssl/ssl.cpp
index 3b072f6bc..921f4d776 100644
--- a/src/core/hle/service/ssl/ssl.cpp
+++ b/src/core/hle/service/ssl/ssl.cpp
@@ -89,14 +89,14 @@ private:
89 parameters.option); 89 parameters.option);
90 90
91 IPC::ResponseBuilder rb{ctx, 2}; 91 IPC::ResponseBuilder rb{ctx, 2};
92 rb.Push(RESULT_SUCCESS); 92 rb.Push(ResultSuccess);
93 } 93 }
94 94
95 void CreateConnection(Kernel::HLERequestContext& ctx) { 95 void CreateConnection(Kernel::HLERequestContext& ctx) {
96 LOG_WARNING(Service_SSL, "(STUBBED) called"); 96 LOG_WARNING(Service_SSL, "(STUBBED) called");
97 97
98 IPC::ResponseBuilder rb{ctx, 2, 0, 1}; 98 IPC::ResponseBuilder rb{ctx, 2, 0, 1};
99 rb.Push(RESULT_SUCCESS); 99 rb.Push(ResultSuccess);
100 rb.PushIpcInterface<ISslConnection>(system); 100 rb.PushIpcInterface<ISslConnection>(system);
101 } 101 }
102 102
@@ -110,7 +110,7 @@ private:
110 LOG_WARNING(Service_SSL, "(STUBBED) called, certificate_format={}", certificate_format); 110 LOG_WARNING(Service_SSL, "(STUBBED) called, certificate_format={}", certificate_format);
111 111
112 IPC::ResponseBuilder rb{ctx, 4}; 112 IPC::ResponseBuilder rb{ctx, 4};
113 rb.Push(RESULT_SUCCESS); 113 rb.Push(ResultSuccess);
114 rb.Push(server_id); 114 rb.Push(server_id);
115 } 115 }
116 116
@@ -129,7 +129,7 @@ private:
129 LOG_WARNING(Service_SSL, "(STUBBED) called"); 129 LOG_WARNING(Service_SSL, "(STUBBED) called");
130 130
131 IPC::ResponseBuilder rb{ctx, 4}; 131 IPC::ResponseBuilder rb{ctx, 4};
132 rb.Push(RESULT_SUCCESS); 132 rb.Push(ResultSuccess);
133 rb.Push(client_id); 133 rb.Push(client_id);
134 } 134 }
135}; 135};
@@ -160,7 +160,7 @@ private:
160 LOG_WARNING(Service_SSL, "(STUBBED) called"); 160 LOG_WARNING(Service_SSL, "(STUBBED) called");
161 161
162 IPC::ResponseBuilder rb{ctx, 2, 0, 1}; 162 IPC::ResponseBuilder rb{ctx, 2, 0, 1};
163 rb.Push(RESULT_SUCCESS); 163 rb.Push(ResultSuccess);
164 rb.PushIpcInterface<ISslContext>(system); 164 rb.PushIpcInterface<ISslContext>(system);
165 } 165 }
166 166
@@ -171,7 +171,7 @@ private:
171 ssl_version = rp.Pop<u32>(); 171 ssl_version = rp.Pop<u32>();
172 172
173 IPC::ResponseBuilder rb{ctx, 2}; 173 IPC::ResponseBuilder rb{ctx, 2};
174 rb.Push(RESULT_SUCCESS); 174 rb.Push(ResultSuccess);
175 } 175 }
176}; 176};
177 177