summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/socket/mkconstants.rb20
1 files changed, 8 insertions, 12 deletions
diff --git a/ext/socket/mkconstants.rb b/ext/socket/mkconstants.rb
index 5b5b74105e..32b99d2fe3 100644
--- a/ext/socket/mkconstants.rb
+++ b/ext/socket/mkconstants.rb
@@ -104,19 +104,15 @@ def each_alias(pat)
end
ERB.new(<<'EOS', nil, '%').def_method(Object, "gen_int_to_name(int_var, lenp_var, pat)")
- switch (<%=int_var%>) {
-% each_alias(pat) {|names|
-% names.each_with_index {|n, i|
-% cond = ["defined(#{n})"]
-% (0...i).each {|j| cond << "(!defined(#{names[j]}) || #{n} != #{names[j]})" }
-#if <%=cond.join(" && ")%>
- case <%=n%>: if (<%=lenp_var%>) *<%=lenp_var%> = <%=n.bytesize%>; return <%=c_str n%>;
-#endif
-% }
-% }
- default:
- return NULL;
+% each_name(pat) {|n|
+#ifdef <%=n%>
+ if (<%=int_var%> == <%=n%>) {
+ if (<%=lenp_var%>) *<%=lenp_var%> = <%=n.bytesize%>;
+ return <%=c_str n%>;
}
+#endif
+% }
+ return NULL;
EOS
result << ERB.new(<<'EOS', nil, '%').result(binding)