require 'gen/ConstGenerator'
def gen_sock_java(options)
  ConstGenerator.new 'platform.sock', options do |cg|
    cg.include "sys/socket.h"
    %w[
      SOCK_STREAM
      SOCK_DGRAM
      SOCK_RAW
      SOCK_RDM
      SOCK_SEQPACKET
      SOCK_MAXADDRLEN
    ].each {|c| cg.const c}
  end
end